Forum Discussion
Percentage Difference in Dashboard Table
- 2 years ago
Hi DavidK85
Please refer the below screenshot you can show this view bco'z in matrix visual not possible your requirement.
you can show the % differene between current and previous year dynamically.If it solves your issue, please accept it as the solution to help the other members find it more quickly.
Best Regards,
Ajith Kumar
DavidK85 , You can try below measure
Percentage_Rise_Fall =
VAR Sum_2023 = [Measure for sum of values in 2023]
VAR Sum_2024 = [Measure for sum of values in 2024]
RETURN
IF(ISBLANK(Sum_2023) || ISBLANK(Sum_2024), BLANK(),
(Sum_2024 - Sum_2023) / Sum_2023 * 100)
If you are using measure for values in 2023 and 2024 replace it in the formula
Thanks for the reply, I'm not using measures to get the total for the years so I don't think it works. This is what I have for my columns and rows if it helps
- Anonymous2 years agoNot applicable
Hi, DavidK85
Thanks for bhanu_gautam reply. Have you solved your problem yet? If not, you can share your complete pbix file without sensitive data and the final result you want to achieve, which will help you to solve the problem faster.Best Regards,
Yang
Community Support Team