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

Join us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.

Reply
JayKarim
Frequent Visitor

How to create a percentage change measure in Matrix table

Hi Power BI community 🙂 

 

I have a matrix table with 3 columns

  1. Product
  2. (Total Sales £) YOA 2020
  3. (Total Sales £) YOA 2021 

 

What I would like to do is add a third column with % varaince between column 2 & 3

 

Would someone mind explaining have a I can do this why an expression?

 

Many thanks in advance

1 ACCEPTED SOLUTION
Samarth_18
Community Champion
Community Champion

HI @JayKarim ,

 

You can try below code:-

variance =
VAR result =
    DIVIDE (
        ( [Total Sales £) YOA 2021] - [(Total Sales £) YOA 2020] ),
        [(Total Sales £) YOA 2020]
    )
RETURN
    FORMAT ( result, "PERCENTAGE" )

Note- I am considering you have created a measure for the calculation of (Total Sales £) YOA 2020,(Total Sales £) YOA 2021 

 

Thanks,

Samarth

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

View solution in original post

2 REPLIES 2
JayKarim
Frequent Visitor

Hi Samarth, 

 

This worked 🙂 Thank you so much

 

Jay 

Samarth_18
Community Champion
Community Champion

HI @JayKarim ,

 

You can try below code:-

variance =
VAR result =
    DIVIDE (
        ( [Total Sales £) YOA 2021] - [(Total Sales £) YOA 2020] ),
        [(Total Sales £) YOA 2020]
    )
RETURN
    FORMAT ( result, "PERCENTAGE" )

Note- I am considering you have created a measure for the calculation of (Total Sales £) YOA 2020,(Total Sales £) YOA 2021 

 

Thanks,

Samarth

Best Regards,
Samarth

If this post helps, please consider accepting it as the solution to help the other members find it more quickly.
Appreciate your Kudos!!
Connect on Linkedin

Helpful resources

Announcements
Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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