Concat two fields | Community
Skip to main content
Level 2
January 31, 2020
Solved

Concat two fields

  • January 31, 2020
  • 3 replies
  • 6826 views

Hi,

 

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

Please suggest.

 

Thanks

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by Milan_Vucetic

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

3 replies

Milan_Vucetic
Milan_VuceticAccepted solution
Level 9
January 31, 2020

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

asktam1410
Level 3
February 4, 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. 

February 6, 2020

The easiest way is in an expression field you can just do this:

@2108714+@field2

 

The plus sign will concatenate for you.

 

You can also add strings to fields like this:

'string1'+@field1