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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
freginier
Solution Specialist
Solution Specialist

Get Previous year from selected year

Hello, 

 

Need help please ! 

I need to get value of previous year depend year select with a slicer. 

 

When I select 2021 I want to see value for 2020. how can I do that ?

I try to use SELECTEDVALUE : CALCULATE(sum(value), YEAR(date)=SELECTEDVALUE(Col1)-1)... 

 

Thank You

 

freginier_0-1634931349552.png

 

 

2 ACCEPTED SOLUTIONS

Thank you ! that work with a Date not connected (I create a Date Table not connected).

Any solution with a connected Date ? 

View solution in original post

Hi, @freginier 

As far as I’m concerned, you can just use one single table without a calendar table connected to achieve your requirement, you can create a measure like this:

Sum = CALCULATE(SUM('Table'[Amount]),FILTER(ALL('Table'),[Year]=SELECTEDVALUE('Table'[Year])-1))

Then you can create a card chart to place the measure like this:

vrobertqmsft_0-1635759757124.png

 

And you can get what you want.

 

Thank you very much!

 

Best Regards,

Community Support Team _Robert Qin

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

3 REPLIES 3
Greg_Deckler
Super User
Super User

@freginier Try:

CALCULATE(sum(value), ALL('Table'), YEAR(date)=SELECTEDVALUE(Col1)-1)

@ me in replies or I'll lose your thread!!!
Instead of a Kudo, please vote for this idea
Become an expert!: Enterprise DNA
External Tools: MSHGQM
YouTube Channel!: Microsoft Hates Greg
Latest book!:
The Definitive Guide to Power Query (M)

DAX is easy, CALCULATE makes DAX hard...

Thank you ! that work with a Date not connected (I create a Date Table not connected).

Any solution with a connected Date ? 

Hi, @freginier 

As far as I’m concerned, you can just use one single table without a calendar table connected to achieve your requirement, you can create a measure like this:

Sum = CALCULATE(SUM('Table'[Amount]),FILTER(ALL('Table'),[Year]=SELECTEDVALUE('Table'[Year])-1))

Then you can create a card chart to place the measure like this:

vrobertqmsft_0-1635759757124.png

 

And you can get what you want.

 

Thank you very much!

 

Best Regards,

Community Support Team _Robert Qin

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

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

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.

Top Solution Authors