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!Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes! Register now.
I'm trying to combine 3 columns so it read: Last Name, Middle Name, First Name. However not every field has data in it so I want to to ignore those blanks if they exist. What would be the best way to write this? Currently I have it like this (below) and it is combining the 3 columns but again if it's blank I want it to ignore that so there isn't a blank in the full name.
= Table.AddColumn(#"Changed Type1", "Full Name Merged", each [#"Last#(lf)Name"] & ", " & [#"Middle#(lf)Name"] & ", " & [#"First#(lf)Name"])
Thank you!
Solved! Go to Solution.
Solution here
Solution here