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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Raghda_Alshehhi
Frequent Visitor

Show % change for total yoy

I have a table which shows only totals per year, and i needto show the percentage change/growth on the same graph

What is the measure for that and which is the approriate graph type? e.g. year vs sales for each year

e.g. Table "total"

yearTotal
198610000
198723666
198845876

 

Also, i have a table that lists only entries for employees (acheivments) (Only i can ghow can i calculate day/month/year % change for this, with card showing the values in red - / or green + (depends if the value is less or more that the previos selected day/month/year

DateAchievments
12-01-2021New project
13-01-2021Employee of the month
14-01-2021Cost reduction initiative 

The idea is to monitor the changes/% for staff

all the queries here answers the changes for sum, but i din't find any solution for the total count

 

1 ACCEPTED SOLUTION
v-stephen-msft
Community Support
Community Support

Hi @Raghda_Alshehhi ,

 

You can calculate the total for the previous year as

previous total = CALCULATE(SUM('Table'[Total]),FILTER(ALLSELECTED('Table'),[year]=MAX('Table'[year])-1))+0

vstephenmsft_0-1656932380430.png

 

The percent change is then calculated as follows.

percentage = DIVIDE(SUM('Table'[Total])-[previous total],[previous total])+0

vstephenmsft_1-1656932388634.png

You can try the stacked column chart to dispaly.

vstephenmsft_2-1656932492804.png

 

 

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

View solution in original post

2 REPLIES 2
v-stephen-msft
Community Support
Community Support

Hi @Raghda_Alshehhi ,

 

You can calculate the total for the previous year as

previous total = CALCULATE(SUM('Table'[Total]),FILTER(ALLSELECTED('Table'),[year]=MAX('Table'[year])-1))+0

vstephenmsft_0-1656932380430.png

 

The percent change is then calculated as follows.

percentage = DIVIDE(SUM('Table'[Total])-[previous total],[previous total])+0

vstephenmsft_1-1656932388634.png

You can try the stacked column chart to dispaly.

vstephenmsft_2-1656932492804.png

 

 

 

Best Regards,

Stephen Tao

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

 

This is excellent. This works except I have another column called version. How do I add version = version to this. Basically I have multiple years as additional row so want it where field  version is the same (aswell as the year is minus one as per example which works)

Helpful resources

Announcements
Sept PBI Carousel

Power BI Monthly Update - September 2024

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

September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

Learn from experts, get hands-on experience, and win awesome prizes.

Sept NL Carousel

Fabric Community Update - September 2024

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

Top Solution Authors