Forum Discussion
NaN help
- Anonymous9 years ago
The query editor uses a different language. It is case sensitive and if statements have a different structure there. You should familiarize yourself with the query editor language. https://msdn.microsoft.com/en-us/library/mt211003.aspx
Typically you get NaN when dividing 0 by 0.
So adjust your formula something like if Quantity = 0 then 0 else Cost / Quantity.
- Anonymous9 years agoNot applicable
...or use the DIVIDE function since it has built-in /0 catching.
- tiffanynguyen9 years agoRegular Visitor
I am a newbie to PowerBI. How do i use the DIVIDE function when i created a custom column? Do I have to go to Advanced Editor?
- Anonymous9 years agoNot applicable
Oh, you're in the query editor. No, DIVIDE is a DAX function. You'll have to go with the if 0 suggestion from MarcelBeug after all.
- Anonymous6 years agoNot applicable
Thanks, MarcelBeug I had the same issue, found this solution, and fixed the error. 🙂