The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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! | |
User | Count |
---|---|
69 | |
67 | |
62 | |
48 | |
28 |
User | Count |
---|---|
113 | |
80 | |
65 | |
55 | |
43 |