rupesh12
30-01-2020
Hi,
How could I combine two fields in enrichment activity in adobe campaign classic?
Please suggest.
Thanks
Milan_Vucetic
MVP
31-01-2020
Hi @rupesh12 ,
you can use function JuxtWords(variable1,variable2).
If you need space between you can use function JuxtWords3(variable1,space string ,variable2).
Variables must be strings.
Regards,
Milan
gnathanmitchell
06-02-2020
The easiest way is in an expression field you can just do this:
@field1+@field2
The plus sign will concatenate for you.
You can also add strings to fields like this:
'string1'+@field1
asktam1410
04-02-2020
Either you can use JustWords function or Pipe to concatenate.
For example : Field1||Field2||Field3. if all are in same format. if anything is in different format - then convert them.
Field1||ToString(field2)||Field3
Hope this helps.