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

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

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
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.