Expand my Community achievements bar.

Announcing the launch of new sub-community for Campaign Web UI to cater specifically to the needs of Campaign Web UI users!
SOLVED

Concat two fields

Avatar

Level 2

Hi,

 

How could I combine two fields in enrichment activity in adobe campaign classic?

Please suggest.

 

Thanks

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

Hi @tejashri12 ,

 

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

View solution in original post

3 Replies

Avatar

Correct answer by
Community Advisor

Hi @tejashri12 ,

 

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

Avatar

Level 4

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. 

Avatar

Level 1

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