I am mew to DAX. How can I concatenate three different columns say First_Name, Middle_Name and Last_Name to a single column with a space in between using CONCATENATE function in DAX. At present I could concatenate only two columns.
=CONCATENATE(FIRST_NAME],CONCATENATE(" ",[LAST_NAME]))
If any other function is there please do let me know that also. My aim is to concatenate 1st Name, 2nd Name and 3rd Name into a single column in SSAS Tabular Model
Please help me. Thanks in Advance
If the columns are already text, you can use th &
operator, i. e. use
[FIRST_NAME] & " " & [LAST_NAME]
You can find the documentation of concatenate
- including the fact that it only accepts two arguments - at http://technet.microsoft.com/en-us/library/ee634811.aspx.