How to use concatenate in Tableau?
www.rigordatasolutions.com › post › how-to-useAug 05, 2021 · String concatenation is the operation of joining character strings end to end. For example, you can concatenate the string ‘Snow’ and ‘ball’ to get ‘Snowball’. Concatenation is therefore useful when you need to combine multiple fields to create a single field. The syntax String concatenation in Tableau can be done using the operator (+) as follows.
Combining Two String Fields | Tableau Software
kb.tableau.com › articles › howtoMay 01, 2013 · Go to Analysis > Create Calculated Field. Name the calculated field and enter the following formula: [String1] + [String2] Click OK. Additional Information Using a plus sign (+) combines two string fields together ("abc"+ "def" = "abcdef"). If a space is needed between the two fields, modify the above formula "abc" + " " + "def" = "abc def"