Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowGet inspired! Check out the entries from the Power BI DataViz World Championships preliminary rounds and give kudos to your favorites. View the vizzies.
Hi,
I have a formula that seems to work (assigns negative deltas to negatives, positive deltas to positives), but I can't really understand it, thus not sure if it's possible to improve it.
My_Measure =
CALCULATE (
[Delta],
FILTER (
VALUES ( Products[Items] ),
COUNTROWS (
FILTER ( Ranges, [Delta] >= Ranges[Negative] && [Delta] < Ranges[Positive] )
) > 0
)
)
Ranges is a simple table like this:
Range | Negative | Positive |
Negative | -999999999 | 0.00001 |
Positive | -0.00001 | 999999999 |
Not sure if this table is necessary, however this not my setup, so I don't want to break it, if I'm not sure 100%.
Use DAX Studio (install it if you don't have it) and check the performance of that measure in various scenarios of your dataset. That will show you if you have to optimize it or not.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code FABINSIDER for a $400 discount!
Check out the February 2025 Power BI update to learn about new features.