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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Anonymous
Not applicable

DIVIDE function when dealing with 2 zeroes

Hi all !

 

I have a discrepancy measure whose value is : 

Discrep :=
1
    - DIVIDE ( ABS ( A1 - B1 ), A1, 1 )

 

So it should return 0 whenever A1 is equal to 0. But here, when I come to check the results, I see that it only makes sense when one of A1 or B1 has a value. When both are null, the divide function seems to return 0 instead of the 1 parameter I passed to it.

NossairR_0-1624894562275.png

 

 

Is there some kind of nuance where it doesn't consider 0 and null to be the same and so divide(null,null,1) = null ? If not do you have an idea why it does that ?

Thanks in advance !

1 ACCEPTED SOLUTION
AlexisOlson
Super User
Super User

divide(null,null,1) = null is more or less what's happening. If there's nothing to divide, it returns nothing.

 

How about this instead?

Discrep :=

VAR quotient = DIVIDE ( ABS ( A1 - B1 ), A1, 1 )
RETURN
IF ( ISBLANK ( quotient ), 0, 1 - quotient )

View solution in original post

2 REPLIES 2
AlexisOlson
Super User
Super User

divide(null,null,1) = null is more or less what's happening. If there's nothing to divide, it returns nothing.

 

How about this instead?

Discrep :=

VAR quotient = DIVIDE ( ABS ( A1 - B1 ), A1, 1 )
RETURN
IF ( ISBLANK ( quotient ), 0, 1 - quotient )

Anonymous
Not applicable

Works like a charm, thanks a lot ! Learned something today.

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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