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.
@Anonymous you can do this in two ways, 1) In query editor 2) Using new calculated measure
1) In Query editor:
1) in your power bi desktop click on edit queries
2)select column right click on it
3)choose replace value
4)enter "null" in find value in "replace value enter "0"
5)close and apply
you should see "0" wherever you have nulls in that column
2)Using new calculated measure
Create new measure using following code
Sales_WO_Blanl = IF(ISBLANK(Sheet2[SalePrice]),0,Sheet2[SalePrice])
use this as a card . FYI see the attched PBIX