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
Anonymous
Not applicable

DAX assistance

Hi, I am looking for help for a DAX function. I have a SL% where the formula is = 1-(x/y). When I do not have data for any month it still gives me 100% as SL% as I have 1 in numerator. How to build a foumula where if X and Y are missing for that month or day it should give me blank or let's say 0. Thank you in advance. Nancy
1 ACCEPTED SOLUTION
Anonymous
Not applicable

 

Measure:=IF ( ISBLANK(Divide(x,y,blank()))
,Blank(),
1-Divide(x,y,blank())

I got in the habbit of always using the divide function to prevent unexpected results and reduce errors.  Hope this helps.

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

 

Measure:=IF ( ISBLANK(Divide(x,y,blank()))
,Blank(),
1-Divide(x,y,blank())

I got in the habbit of always using the divide function to prevent unexpected results and reduce errors.  Hope this helps.

Anonymous
Not applicable

Many thanks Jason!!!!

It worked 🙂

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