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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Anonymous
Not applicable

Create a measure for sameperiodlastyear

Hello, is there a way to create a measure for sameperiodlastyear so I can drag it into a dashboard? If I want to create a column in a dashboard with today's date, I can simply create a measured called Today and the DAX formula is Today = today(); however, I can't seem to do that with sameperiodlastyear. 

This is what I want in my dashboard, with Date available in the data. 

DateSameperiodlastyear
1/1/20201/1/2019
1/8/20201/8/2019
1/15/20201/15/2019
1/22/20201/22/2019
1/29/20201/29/2019
2/5/20202/5/2019
1 ACCEPTED SOLUTION
camargos88
Community Champion
Community Champion

Hi @Anonymous ,

 

Try this measure:

 

_LY =
VAR _date = MAX('Table'[Date])
RETURN DATE(YEAR(_date) - 1; MONTH(_date); DAY(_date))
 
Ricardo


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!



View solution in original post

1 REPLY 1
camargos88
Community Champion
Community Champion

Hi @Anonymous ,

 

Try this measure:

 

_LY =
VAR _date = MAX('Table'[Date])
RETURN DATE(YEAR(_date) - 1; MONTH(_date); DAY(_date))
 
Ricardo


Did I answer your question? Mark my post as a solution!

Proud to be a Super User!



Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

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

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.