Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
I created a new field, Cost/Quantity, and the output is coming up at NaN.
I was able to see the Cost by year on a bar chart and quantity by year on a bar chart fine, but when I tried to doing Cost/Quantity on a bar chart, I am not getting anything due to NaN values. How do i fix this?
Thanks
Solved! Go to Solution.
@Vvelardenope, turns out this is a custom column in the query editor. No DIVIDE there.
Proud to be a Super User!
Hello, i have the same issue :
I calculate averages over rolling periods here are my two colums except that i have an error in the result in the column %JSA 3 months rolling : for december (the latest line) : the good value is 0,73 (0,85+0,71+0,64)/3 but i have got : 0,65
Here are my formulas :
Thank you,
Chloé
Typically you get NaN when dividing 0 by 0.
So adjust your formula something like if Quantity = 0 then 0 else Cost / Quantity.
it is not working for me
@MarcelBeug wrote:Typically you get NaN when dividing 0 by 0.
So adjust your formula something like if Quantity = 0 then 0 else Cost / Quantity.
THANK YOU! That was so easy to fix. Thank you!
How do i get rid of this? Would I be able to replace it with 0 or null?
super!!!! Thanks Sir!!!!
This worked for me beautifully thank you
@Anonymous
How did you write the formula in the custom column?
I have the same issue.
You're dividing by zero. That's impossible. That's why you're getting the error. You need to put in an if statement to return null when [D_Act_2doTermino] is 0.
Proud to be a Super User!
@Vvelardenope, turns out this is a custom column in the query editor. No DIVIDE there.
Proud to be a Super User!
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
104 | |
99 | |
98 | |
41 | |
38 |
User | Count |
---|---|
151 | |
123 | |
79 | |
73 | |
71 |