cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

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
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors