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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

Reply
Syndicate_Admin
Administrator
Administrator

Calculate percentage change between 2 fields in the same column

Hello, I need to calculate the percentage change of the column "2022" on "2021". Both columns with part of the same field that is called "Year".

Thanks a lot

Smasague_1-1666008101713.png

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

Hi @Syndicate_Admin ,

 

I think your data maybe like this:

vyadongfmsft_0-1666580780726.png

 

Create a new column to calculate the percentage change of the column "2022" on "2021":

 

Percentage = 
var year_2021 = CALCULATE(SUM('Table'[Value]),FILTER('Table','Table'[Year] = 2021 && 'Table'[ID] = EARLIER('Table'[ID])))
var year_2022 = CALCULATE(SUM('Table'[Value]),FILTER('Table','Table'[Year] = 2022 && 'Table'[ID] = EARLIER('Table'[ID])))
return
DIVIDE(year_2022 - year_2021,year_2021)

 

vyadongfmsft_1-1666580932376.png

 

I think this is the result you want:

vyadongfmsft_2-1666580968477.png

Best regards,

Yadong Fang

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-yadongf-msft
Community Support
Community Support

Hi @Syndicate_Admin ,

 

I think your data maybe like this:

vyadongfmsft_0-1666580780726.png

 

Create a new column to calculate the percentage change of the column "2022" on "2021":

 

Percentage = 
var year_2021 = CALCULATE(SUM('Table'[Value]),FILTER('Table','Table'[Year] = 2021 && 'Table'[ID] = EARLIER('Table'[ID])))
var year_2022 = CALCULATE(SUM('Table'[Value]),FILTER('Table','Table'[Year] = 2022 && 'Table'[ID] = EARLIER('Table'[ID])))
return
DIVIDE(year_2022 - year_2021,year_2021)

 

vyadongfmsft_1-1666580932376.png

 

I think this is the result you want:

vyadongfmsft_2-1666580968477.png

Best regards,

Yadong Fang

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

VahidDM
Super User
Super User

Hi @Syndicate_Admin  
@Smasague 

 

Can you post sample data as text?

please see this post regarding How to Get Your Question Answered Quickly:
https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490

The most important parts are:
1. Sample data as text, use the table tool in the editing bar
2. Expected output from sample data
3. Explanation in words of how to get from 1. to 2.
4. Relation between your tables

Appreciate your Kudos!!
LinkedIn:www.linkedin.com/in/vahid-dm/

Helpful resources

Announcements
August Power BI Update Carousel

Power BI Monthly Update - August 2025

Check out the August 2025 Power BI update to learn about new features.

August 2025 community update carousel

Fabric Community Update - August 2025

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