cancel
Showing results for 
Search instead for 
Did you mean: 

Concatenation of 3 or more strings

Koei
Discoverer
0 Kudos
555

Concatenation of 3 or more strings

The CONCAT function can be used to concatenate two strings, but to concatenate three or more strings, don't we have to concatenate them one by one?

Please tell me an easier way to do this.

Accepted Solutions (0)

Answers (2)

Answers (2)

chmbilal
Participant
0 Kudos

CONCAT(CONCAT([FirstName], [MiddleName]), [LastName])

N1kh1l
Active Contributor
0 Kudos

@Koei 

May be something like CONCAT("A",CONCAT("B","C")) where A, B and C are your 3 strings.

 

 

Nikhil