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
michael_knight
Post Prodigy
Post Prodigy

Percentage comparing 2018 to2019

Hi Al,

 

I'm trying to get the percentage rise from 2018 to 2019 for multiple months

 

Capture.PNG

Every example I'm seeing online is using this with a currency or numeric value. 

 

I'm only using the amount of records within a colum as my value

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

Hi @michael_knight ,

 

One sample for your rerefence. If it doesn't meet your requirement, kindly share your sample data and excepted result to me if you don't have any Confidential Information. Please upload your files to One Drive and share the link here.

Measure = 
VAR y18 =
    CALCULATE ( SUM ( Table1[value] ), FILTER ( Table1, Table1[Year] = 2018 ) )
VAR y19 =
    CALCULATE ( SUM ( Table1[value] ), FILTER ( Table1, Table1[Year] = 2019 ) )
RETURN
    DIVIDE ( y19 - y18, y18 )

Capture.PNG

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

View solution in original post

2 REPLIES 2
Ashish_Mathur
Super User
Super User

Hi,

Share the link from where i can download your PBI file.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/
v-frfei-msft
Community Support
Community Support

Hi @michael_knight ,

 

One sample for your rerefence. If it doesn't meet your requirement, kindly share your sample data and excepted result to me if you don't have any Confidential Information. Please upload your files to One Drive and share the link here.

Measure = 
VAR y18 =
    CALCULATE ( SUM ( Table1[value] ), FILTER ( Table1, Table1[Year] = 2018 ) )
VAR y19 =
    CALCULATE ( SUM ( Table1[value] ), FILTER ( Table1, Table1[Year] = 2019 ) )
RETURN
    DIVIDE ( y19 - y18, y18 )

Capture.PNG

 

Community Support Team _ Frank
If this post helps, then please consider Accept it as the solution to help the others find it more quickly.

Helpful resources

Announcements
September Hackathon Carousel

Microsoft Fabric & AI Learning Hackathon

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

Top Solution Authors