You need to create a calculated column in Power BI that shows the full name by combining 'FirstName' and 'LastName' columns with a space. Which DAX expression should you use?
The ampersand (&) is the correct concatenation operator in DAX.
Why this answer
Option A is correct because the DAX concatenation operator is the ampersand (&). Option B is wrong because CONCATENATE function only takes two arguments. Option C is wrong because CONCATENATEX is for tables.
Option D is wrong because the plus sign is for addition.