Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! It's time to submit your entry. Live now!
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.
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 !
Solved! Go to Solution.
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 )
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 )
Works like a charm, thanks a lot ! Learned something today.
The Power BI Data Visualization World Championships is back! It's time to submit your entry.
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 56 | |
| 40 | |
| 38 | |
| 21 | |
| 21 |
| User | Count |
|---|---|
| 141 | |
| 105 | |
| 63 | |
| 36 | |
| 35 |