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! Request now
Hi all,
I have this formula which is present in a matrix visualization
M = CALCULATE(SUMX(ProdForecast,abs([TotalActual]-ProdForecast[Forecast])),'M view'[Category]="M")
My headache today is to somehow determine what is the sign of
[TotalActual]-ProdForecast[Forecast]
before the ABS formula is applied.
Example: If TotalActual-Forecast is -8 in the matrix I will have 8 but somehow to determine the initial sign and put it as conditional formating or something in a matrix.
Solved! Go to Solution.
https://docs.microsoft.com/en-us/dax/sign-function-dax
M =
VAR __Sign = SIGN(ProdForecast[TotalActual]-ProdForecast[Forecast])
RETURN
CALCULATE(SUMX(ProdForecast,abs([TotalActual]-ProdForecast[Forecast])),'M view'[Category]="M")
https://docs.microsoft.com/en-us/dax/sign-function-dax
M =
VAR __Sign = SIGN(ProdForecast[TotalActual]-ProdForecast[Forecast])
RETURN
CALCULATE(SUMX(ProdForecast,abs([TotalActual]-ProdForecast[Forecast])),'M view'[Category]="M")
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 98 | |
| 72 | |
| 50 | |
| 50 | |
| 43 |