Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
Good Morning. So i have a PBI dashboard I created (very amature) and I need some help.
I need to show wheather the value is up or down from the previous month. I know how to add the arrows with conditional formatting, the issue I'm running into is the calculation. I used a previous dashboard as a guide, but the formula to calculate the difference Month over month is not right. Does anyone have the syntax or guidence for how to write this so it work. Right now i currently have a measure created :
"
Solved! Go to Solution.
Hi, @Anonymous
You can try the following methods.
%_Count_Mom_Var =
IF (
CALCULATE ( SUM ( 'Carc_Rarc_Historical'[Patnum] ),
FILTER ( ALL ( Dates ),
Dates[Date_Rank] = SELECTEDVALUE ( Dates[Date_Rank] ) - 1
)
) = 0,
"",
CALCULATE ( SUM ( 'Carc_Rarc_Historical'[Patnum] )
- CALCULATE ( SUM ( 'Carc_Rarc_Historical'[Patnum] ),
FILTER ( ALL ( Dates ),
Dates[Date_Rank] = SELECTEDVALUE ( Dates[Date_Rank] ) - 1
)
)
)
/ CALCULATE ( SUM ( 'Carc_Rarc_Historical'[Patnum] ),
FILTER ( ALL ( Dates ),
Dates[Date_Rank] = SELECTEDVALUE ( Dates[Date_Rank] ) - 1
)
)
)
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Anonymous
You can try the following methods.
%_Count_Mom_Var =
IF (
CALCULATE ( SUM ( 'Carc_Rarc_Historical'[Patnum] ),
FILTER ( ALL ( Dates ),
Dates[Date_Rank] = SELECTEDVALUE ( Dates[Date_Rank] ) - 1
)
) = 0,
"",
CALCULATE ( SUM ( 'Carc_Rarc_Historical'[Patnum] )
- CALCULATE ( SUM ( 'Carc_Rarc_Historical'[Patnum] ),
FILTER ( ALL ( Dates ),
Dates[Date_Rank] = SELECTEDVALUE ( Dates[Date_Rank] ) - 1
)
)
)
/ CALCULATE ( SUM ( 'Carc_Rarc_Historical'[Patnum] ),
FILTER ( ALL ( Dates ),
Dates[Date_Rank] = SELECTEDVALUE ( Dates[Date_Rank] ) - 1
)
)
)
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
110 | |
97 | |
93 | |
87 | |
68 |
User | Count |
---|---|
173 | |
134 | |
132 | |
102 | |
95 |