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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount 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