The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
Hello,
I'm looking for a way using DAX function to replace all the NaN values in my data to 0. (I do not have the original data file so that I cannot use query editor.)
Thanks!
Solved! Go to Solution.
Hi @zilaifeng
You can use if error like below.
Column = IFERROR('Table'[Custom], BLANK())
Hi @zilaifeng
You can use if error like below.
Column = IFERROR('Table'[Custom], BLANK())
Thanks for the quick solution.