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.
I am using the following formula to concatenate first and last name. However, it does not work when the last name starts with a slash (/). It gives me a null cell.
=[first name]&" "&[last name]
first name | last name |
/ No spend |
Any help would be appreciated. Thank you!
Solved! Go to Solution.
Thank you! I replaced "null" (since the first name does not have a value/text) with space and it worked.
=([first name] ?? "") & " " & ([last name] ?? "")
Expertise = List.Accumulate( {Days as from Today}, {Skills and Knowledge}, (Current, Everyday) => Current & Day.LearnAndPractise(Everyday) ) |
Run a replace "/" with "" before the concatenation.
Thank you! I added the replaced the first name and last name values "/" with nothing step before concatenation but I am still getting null. Any idea why?
I'm not sure, but maybe try using Text.Combine vs &.
Thank you! I replaced "null" (since the first name does not have a value/text) with space and it worked.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.