Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
PlastiquesMoore
Regular Visitor

NaN error message

Hello to all,

 

I am pretty much new to Power BI and loving it! I'm still getting used to the Power BI terminology so please bare with me.

 

This is my Dax formula and I'm getting some "NaN" results. I would like to change this to "0". Could someone please help me?

 

PPM Externe Médical % Variance = (CALCULATE(sum('Quality (Actuel)'[External PPM - Medical Actuel]) - (sum('Quality (Planifié)'[External PPM - Medical Planifié])))) / (CALCULATE(sum('Quality (Planifié)'[External PPM - Medical Planifié])))
 
Thanks in advance!

 

1 ACCEPTED SOLUTION

Your formula gave me a DAX error. Figured it out to this. Thanks very much for the help!

 

PPM Externe Médical % Variance = DIVIDE((CALCULATE(SUM('Quality (Actuel)'[External PPM - Medical Actuel])-(SUM('Quality (Planifié)'[External PPM - Medical Planifié]))));(SUM('Quality (Planifié)'[External PPM - Medical Planifié]));0)

View solution in original post

4 REPLIES 4
az38
Community Champion
Community Champion

Hi @PlastiquesMoore 

use DIVIDE() function, like 

PPM Externe Médical % Variance = DIVIDE(
CALCULATE(sum('Quality (Actuel)'[External PPM - Medical Actuel]) - (sum('Quality (Planifié)'[External PPM - Medical Planifié]))))
, 
CALCULATE(sum('Quality (Planifié)'[External PPM - Medical Planifié]))
,
0
)

  https://docs.microsoft.com/en-us/dax/divide-function-dax here is some details. you can replace 0 at the end to any value you wish to see instead of NaN


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn

Your formula gave me a DAX error. Figured it out to this. Thanks very much for the help!

 

PPM Externe Médical % Variance = DIVIDE((CALCULATE(SUM('Quality (Actuel)'[External PPM - Medical Actuel])-(SUM('Quality (Planifié)'[External PPM - Medical Planifié]))));(SUM('Quality (Planifié)'[External PPM - Medical Planifié]));0)

@PlastiquesMoore 

now its ok? or try this

PPM Externe Médical % Variance = 
DIVIDE(
(
CALCULATE(SUM('Quality (Actuel)'[External PPM - Medical Actuel]))
-
SUM('Quality (Planifié)'[External PPM - Medical Planifié])
);
SUM('Quality (Planifié)'[External PPM - Medical Planifié]);
0
)

 

 


do not hesitate to give a kudo to useful posts and mark solutions as solution
LinkedIn
Anonymous
Not applicable

Write the same dax which you have written in original post by using divide function and add zero as third parameter.
Divide(numerator, denominator,0)
Make sure you have closed parenthesis correctly.
You issue will get resolved.

Thanks
Pravin.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors