Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Learn more
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.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 5 | |
| 4 | |
| 3 | |
| 3 |
| User | Count |
|---|---|
| 24 | |
| 12 | |
| 11 | |
| 9 | |
| 8 |