I am trying to create concatenated text with multiple continuous "spaces" so I can map that in PDF in one go, like below.
ID: XXXXXXXX1 Name: First Last ......
ID: XXXXXXXX2 Name: First Last ......
With the formula below, " " will endup with single space as well as Char(32)+Char(32).
"ID: "+[ID]@row + " "+"Name: " + [Name]@row
Does anyone has an idea for this?
Thanks!