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.
Hi All,
I have a situation where i want to replace null values with the mean value of that column.
What's the best way to do it in Power BI?
Regards,
Himanshu
Solved! Go to Solution.
@Anonymous , a new column in DAX
If(isblank([review_per_month]), avergage([review_per_month]),[review_per_month])
Thanks it helped.
Regards,
Himanshu