cancel
Showing results for 
Search instead for 
Did you mean: 
Reply
Saniat
Helper IV
Helper IV

Calculate YTD relative to the End Date from the Date slicer

Hi,

I have a Date Slicer for the report, and wantto display YTD measure.

When the End of Previous Year is within the Date Slicer selection, this is not a problem, but if for example the date slicer selects Feb 2022 to July 2022, then how do I get the data for Dec 2021 and July 2022 ?

Thanks.

1 ACCEPTED SOLUTION

@Saniat,

 

YTD = CALCULATE( <your expression>, DATESYTD(LASTDATE('Date'[Date])), ALL(Date))

 

View solution in original post

4 REPLIES 4
Saniat
Helper IV
Helper IV

Thank you. Had to modify a little bit to get ONLY THE FIRST MONTH, but you solved the key part of it. Thanks again.


FIRSTDATE
(
                 DATESYTD(
                                  LASTDATE('Dates'[Date ID])
                                  )
                 )
SivaMani
Resident Rockstar
Resident Rockstar

@Saniat ,

  1. Do you want YTD value based on the slicer's End date?
  2. For example, if you select Feb'22 to Jul'22,  do you need to calculate the value for Jan'22 to July'22?
  3. Do you have any date tables in your dataset?

1. yes
2. yes
3. yes - the slicer is based on that table

@Saniat,

 

YTD = CALCULATE( <your expression>, DATESYTD(LASTDATE('Date'[Date])), ALL(Date))

 

Helpful resources

Announcements
PBI Sept Update Carousel

Power BI September 2023 Update

Take a look at the September 2023 Power BI update to learn more.

Learn Live

Learn Live: Event Series

Join Microsoft Reactor and learn from developers.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

Top Solution Authors