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

Earn a 50% discount on the DP-600 certification exam by completing the Fabric 30 Days to Learn It challenge.

Reply
zervino
Helper I
Helper I

How to choose and show data comparing two years

I have data with this structure:

 

zervino_1-1698349448440.png

 

And I would like to show this in Power BI:

 

zervino_2-1698349552172.png

 

 

How can I achieve this?

 

The idea is to have some slicers to select the two years to compare (so I could choose 2019 vs 2022 or 2020 vs 2023, etc)

 

1 ACCEPTED SOLUTION
gmsamborn
Super User
Super User

Hi @zervino 

 

Would something like this help?

Compare selected years.pbix

 

View solution in original post

3 REPLIES 3
v-zhangti
Community Support
Community Support

Hi, @zervino 

 

You can try the following methods.

In the Power Query-Select the first two columns-Unpivot other column:

vzhangti_0-1698650205699.png

vzhangti_1-1698650229604.png

Measure:

Minyear value = Var _minyear=CALCULATE(MIN('Table'[Year]),ALLSELECTED('Table'[Year]))
Return
CALCULATE(SUM('Table'[Value]),FILTER(ALL('Table'),[Year]=_minyear&&[Attribute]=SELECTEDVALUE('Table'[Attribute])))
Maxyear value = Var _maxyear=CALCULATE(Max('Table'[Year]),ALLSELECTED('Table'[Year]))
Return
CALCULATE(SUM('Table'[Value]),FILTER(ALL('Table'),[Year]=_maxyear&&[Attribute]=SELECTEDVALUE('Table'[Attribute])))
YOY = [Maxyear value]-[Minyear value]
YOY% = [YOY]/[Maxyear value]

vzhangti_2-1698650623612.png

Is this the result you expect? Please see the attached document.

 

Best Regards,

Community Support Team _Charlotte

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

gmsamborn
Super User
Super User

Hi @zervino 

 

Would something like this help?

Compare selected years.pbix

 

Thank you, that works perfect.

Helpful resources

Announcements
LearnSurvey

Fabric certifications survey

Certification feedback opportunity for the community.

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.