Dynamic column display names

Hi all,

I tried to make a dynamic column name. To make it more clear what information is needed. I have en contact name and i want the phone number. when this is filled in there is an option to fill a second contact ( with the use of show_if). What is want:

[Second contact] value is: โ€œRemco Edelenbosโ€
[Phonenumber2] Display name: Number of Remco Edelenbos

I can get the โ€œRemco Edelenbosโ€ in the display name but not with the text โ€œNumber ofโ€ before it. I tried:

  1. AND, this doesnt work because the value needs to be logicโ€ฆ like yes or no.
  2. โ€œNumber ofโ€ , [Second contact] --> Result is: just the text โ€œnumber ofโ€

Is this posible?

Solved Solved
0 1 500
1 ACCEPTED SOLUTION

I think you want a concatentation?

Try CONCATENATE("Number of ", [Second contact])

The shorter version of that is

"Number of " & [Second contact]

View solution in original post

1 REPLY 1

I think you want a concatentation?

Try CONCATENATE("Number of ", [Second contact])

The shorter version of that is

"Number of " & [Second contact]

Top Labels in this Space