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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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

1 REPLY 1
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.

 

 

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.

Top Solution Authors