Remove @ symbol when concatenating column names?

Hi, I’m trying to concatenate values from multiple columns but I keep getting the @ symbol before each value. Pls see screenshot. Any ideas?

concatenate(totext(thisrow.hook-id), " - ", totext(thisrow.body-id))

Dear @Kory_Basaraba,

Please find the sample I created in the embedded doc.
You can copy it for your own reference and see how the formulas.

In the sample is some more important explanations given.

1 Like

you have to chain on to the display column and thus it will become something like below in which the name references the display column (what you see with the @ is the object)

Format("{1} - {2}",
thisRowhook-id.name,
thisRowbody-id.name
)
1 Like