Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
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! | |
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.