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
JemmaD
Resolver II
Resolver II

Date dimension table with rolling 13 months

I'm trying to create a date table which only goes back as far as the last 13 calendar months from today and my code does not work, can you show me where i'm going wrong?

 

Date = CALENDAR(DATE(MONTH(TODAY()-13),1,1),TODAY())

1 ACCEPTED SOLUTION
JemmaD
Resolver II
Resolver II

I found a simpler solution which corrected my original syntax
Date = CALENDAR(DATE(YEAR(TODAY()),MONTH(TODAY())-13,DAY(TODAY())),today())

View solution in original post

6 REPLIES 6
PaulDBrown
Community Champion
Community Champion

Try:

13 months Cal =
VAR _Today =
    TODAY ()
VAR __13Months =
    DATE ( YEAR ( TODAY () ), MONTH ( TODAY () ) - 13, DAY ( TODAY () ) )
RETURN
    CALENDAR ( __13Months, _Today )

13months.jpg

 





Did I answer your question? Mark my post as a solution!
In doing so, you are also helping me. Thank you!

Proud to be a Super User!
Paul on Linkedin.






JemmaD
Resolver II
Resolver II

I found a simpler solution which corrected my original syntax
Date = CALENDAR(DATE(YEAR(TODAY()),MONTH(TODAY())-13,DAY(TODAY())),today())

Interesting solution. I didn't know that using Date() would automatically change the year based on the subtraction of the months 🙂

JorgePinho
Solution Sage
Solution Sage

Try this: Date = CALENDAR(DATEADD(TODAY(),-13,MONTH),TODAY())

@JorgePinho it says DATEADD must specify a column

Create a Last Refresh column for your report and use that column.

For reference: https://blogs.perficient.com/2022/08/24/how-to-show-last-refresh-date-in-power-bi/

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

RTI Forums Carousel3

New forum boards available in Real-Time Intelligence.

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

MayPowerBICarousel1

Power BI Monthly Update - May 2024

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