Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code MSCUST for a $150 discount.
Register nowHi 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")
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
User | Count |
---|---|
102 | |
70 | |
68 | |
54 | |
41 |
User | Count |
---|---|
153 | |
83 | |
65 | |
62 | |
61 |