Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi
I wanted to join firstname and lastname and put a space between them. I tried to insert a column with this dax formula
Solved! Go to Solution.
You can nest concatenate statements
CONCATENATE(names[First Name], CONCATENATE(" ", names[Last Name]))
Proud to be a Super User! | |
Column = names[First Name]&" "&names[Last Name] should work without the concatenate statement.
Proud to be a Super User! | |
It does work without concat function. Thank you. But if I want to use concat function, how can I insert the space. Thank you again.
You can nest concatenate statements
CONCATENATE(names[First Name], CONCATENATE(" ", names[Last Name]))
Proud to be a Super User! | |