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

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Pawan
Frequent Visitor

Previous Year DAX Calculation

Hi Team

 

Please can you help me on below issue. I have created a table like below in power bi.

By default current month selection is applied and calculated CY and PY measures like below

 

CY= CALCULATE( Sum(SalesNetAmountGBP]),Date'[CurrentDayOffset]<=0)

PY = CALCULATE([CY], SAMEPERIODLASTYEAR('Date'[Date]))
 
Issue: When i have selected 2022 full year PY measure is showing data upto 2021 december 31st instead of 2021 december 5th (today). Please can you help to write DAX for  PY measure to show last year today date data dynamically .

 

Pawan_0-1670248146594.png

 

Thanks in advance

 

@v-janeyg-msft 

1 ACCEPTED SOLUTION
tamerj1
Super User
Super User

Hi @Pawan 

please try

PY =
CALCULATE (
[CY],
FILTER (
SAMEPERIODLASTYEAR ( 'Date'[Date] ),
FORMAT ( [Date], "MMDD" ) <= FORMAT ( TODAY (), "MMDD" )
)
)

View solution in original post

4 REPLIES 4
tamerj1
Super User
Super User

Hi @Pawan 

please try

PY =
CALCULATE (
[CY],
FILTER (
SAMEPERIODLASTYEAR ( 'Date'[Date] ),
FORMAT ( [Date], "MMDD" ) <= FORMAT ( TODAY (), "MMDD" )
)
)

Pawan
Frequent Visitor

Hi @tamerj1 

 

Tha above solution is working for both month and year selection.

 

Thanks

Pawan

amitchandak
Super User
Super User

@Pawan ,

 

PY = CALCULATE([CY], SAMEPERIODLASTYEAR('Date'[Date]), format([Date],"MMDD") <= format(today() ,"MMDD")  )

@amitchandak thank you for your reply. The above solution works only for complete year(2022) selection. But is breaking when we select month or quarter. The measure should be dynamic based on Date selection.

 

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors