Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
DavidK85
Frequent Visitor

Percentage Difference in Dashboard Table

Hi,

 

I have created a table on my dashboard (below) showing the sum of values for each month in 2023 and 2024. I'm looking to create a column that will give me a percentage rise/fall between the two years. Is this possible?

 

DavidK85_0-1714639209543.png

 

Thanks

 

4 REPLIES 4
Ajithkumar_03
Frequent Visitor

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.

Ajithkumar_03_0-1715002136301.png

 



If it solves your issue, please accept it as the solution to help the other members find it more quickly.

Best Regards,
Ajith Kumar



bhanu_gautam
Super User
Super User

@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





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




@bhanu_gautam 

 

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

 

DavidK85_0-1714641096960.png

 

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

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.