Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. 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.