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

Grow your Fabric skills and prepare for the DP-600 certification exam by completing the latest Microsoft Fabric challenge.

Reply
AhmedHassan
Frequent Visitor

Hello All , Kindly i need to have yesterday date last year

Hello All , Kindly i need to have yesterday date for last year based on slected month from Dim_Date slicer
So as an example

if i chosed May 2023 yesterday will be 2022-06-05

if i chosed April 2023 yesterday will be 2022-04-05

 

AhmedHassan_0-1686045792664.png

 

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @AhmedHassan 
Please try

Yesterday Date =
VAR SelectedDate =
    MAX ( Dim_Date[Date] )
VAR TodayDate =
    TODAY ()
RETURN
    DATE ( YEAR ( SelectedDate ) - 1, MONTH ( SelectedDate ), DAY ( TodayDate ) - 1 )

View solution in original post

2 REPLIES 2
tamerj1
Super User
Super User

Hi @AhmedHassan 
Please try

Yesterday Date =
VAR SelectedDate =
    MAX ( Dim_Date[Date] )
VAR TodayDate =
    TODAY ()
RETURN
    DATE ( YEAR ( SelectedDate ) - 1, MONTH ( SelectedDate ), DAY ( TodayDate ) - 1 )

Hello @tamerj1 
you saved my day , cannot thank you enough. many thanks and much appreciated

Helpful resources

Announcements
RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

Ask questions in Eventhouse and KQL, Eventstream, and Reflex.

MayPowerBICarousel

Power BI Monthly Update - May 2024

Check out the May 2024 Power BI update to learn about new features.

Top Kudoed Authors