Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredJoin 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.
Hello, I'm working to clean up a Decomposition Tree and ran into a challenge with blanks. I'm looking to have a query in M that says the following:
=IF( [L9] is "" then insert value from column [Name and Position])
Thank you!
Solved! Go to Solution.
Hi @Anonymous
Try this
= if [L9] = "" then [Name and Position] else [L9]
Power BI transpose data, does not provide cell details as "L9"?
Hi @Anonymous
Try this
= if [L9] = "" then [Name and Position] else [L9]