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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Dear All,
I have the table below in which i created a column for new clients. If the cell has sme value it should be copied, and in case it's empty "0" should be added.
But my measure is not working, what's my mistake?
Thanks!
Solved! Go to Solution.
I think your column should be
New customers (if error) = IF('New Customers'[New Clients]= BLANK(),0,'New Customers'[New Clients])
If you're just replacing blank with 0 you could do also this is power query using 'replace values'
@Anonymous You have an extra 0)FALSE :
your measure:
New customers (if error) = IF('New Customers'[New Clients]= BLANK(),0)FALSE'New Customers'[New Clients])
should be:
New customers (if error) = IF('New Customers'[New Clients]= BLANK(), 'New Customers'[New Clients])
Copying DAX from this post? Click here for a hack to quickly replace it with your own table names
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
I work as a Microsoft trainer and consultant, specialising in Power BI and Power Query.
www.excelwithallison.com
I think your column should be
New customers (if error) = IF('New Customers'[New Clients]= BLANK(),0,'New Customers'[New Clients])
If you're just replacing blank with 0 you could do also this is power query using 'replace values'
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!