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
Caldowd98
Helper I
Helper I

Date Table

Hi community

 

I have a dataset where the last entry against a date is 01.09.2022. My current date table (below) returns a date table with the last date 31.12.2022.

How would i change this so it returns the maximum date in the dataset and not the final day of the year of this date ?

 

Date Table =
ADDCOLUMNS(
CALENDARAUTO(),
"YEAR", YEAR([Date]),
"Month", FORMAT([Date], "mmmm"),
"MONTH NUMBER", MONTH([Date]))
 
Thanks!! 🙂
1 ACCEPTED SOLUTION
PaulDBrown
Community Champion
Community Champion

Let's say the date field in your fact table is called 'FactTable'[Date]

You can limit the start and end date in the calendar table by using:

Date Table =
VAR _MinDate =
    MIN ( FactTable[Date] )
VAR _MaxDate =
    MAX ( FactTable[Date] )
RETURN
    ADDCOLUMNS (
        CALENDAR ( _MinDate, _MaxDate ),
        "YEAR", YEAR ( [Date] ),
        "Month", FORMAT ( [Date], "mmmm" ),
        "MONTH NUMBER", MONTH ( [Date] )
    )

 





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.






View solution in original post

3 REPLIES 3
PaulDBrown
Community Champion
Community Champion

Let's say the date field in your fact table is called 'FactTable'[Date]

You can limit the start and end date in the calendar table by using:

Date Table =
VAR _MinDate =
    MIN ( FactTable[Date] )
VAR _MaxDate =
    MAX ( FactTable[Date] )
RETURN
    ADDCOLUMNS (
        CALENDAR ( _MinDate, _MaxDate ),
        "YEAR", YEAR ( [Date] ),
        "Month", FORMAT ( [Date], "mmmm" ),
        "MONTH NUMBER", MONTH ( [Date] )
    )

 





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.






Thanks Paul - perfect 🙂

mangaus1111
Solution Sage
Solution Sage

Hi @Caldowd98 ,

I don´t reccomend you to limit the rows of your calendar table to the last date of your fact table. You can have problems with time intelligence functions.

 

See here how a calendar table must be written:

https://community.powerbi.com/t5/Community-Blog/Time-Intelligence-Calendar-Table/ba-p/1000565

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

 

Helpful resources

Announcements
July PBI25 Carousel

Power BI Monthly Update - July 2025

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

Join our Fabric User Panel

Join our Fabric User Panel

This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.

June 2025 community update carousel

Fabric Community Update - June 2025

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