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

Power BI is turning 10! Let’s celebrate together with dataviz contests, interactive sessions, and giveaways. Register now.

Reply
akhaliq7
Post Prodigy
Post Prodigy

datesinperiod but for start date use previous month as only need to report on complete/whole months

I have the following datesinperiod code:

 

Table = 
 CALCULATETABLE(
     'Table',
     DATESINPERIOD(
         'Date'[Date],
         PREVIOUSMONTH(MAX('Date'[Date])),
         -12,
         MONTH
     )
)

 

But want the start date to be the previous month as only reporting on complete/whole months. e.g. today is 01/06/2023 so need my max date to be 31st of may 2023 and need the date to start 1st of june 2022

1 ACCEPTED SOLUTION

I managed to solve my issue using the following code:

Table = 
CALCULATETABLE(
    'Table',
    DATESINPERIOD(
        'Date'[Date],
        EOMONTH(MAX('Date'[Date]), -1),
        -13,
        MONTH
    )
)

View solution in original post

5 REPLIES 5
tamerj1
Super User
Super User

Hi @akhaliq7 

please try

Table =
CALCULATETABLE (
'Table',
FILTER (
DATESINPERIOD (
'Date'[Date],
PREVIOUSMONTH ( MAX ( 'Date'[Date] ) ),
-12,
MONTH
),
FORMAT ( 'Date'[Date], "YYMM" ) < FORMAT ( TODAY (), "YYMM" )
)
)

I managed to solve my issue using the following code:

Table = 
CALCULATETABLE(
    'Table',
    DATESINPERIOD(
        'Date'[Date],
        EOMONTH(MAX('Date'[Date]), -1),
        -13,
        MONTH
    )
)
Anonymous
Not applicable

Based on your explanation, you need to make it -12 instead of -13... Using -13 would make the range: May 1, 2022 - May 31 2023; using -12 would make it  June 1, 2022 - May 31, 2023.

Just to add when I created my date table I have set max date to today()

I am getting the following error message: The first argument to 'PREVIOUSMONTH' must specify a column.

Helpful resources

Announcements
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 Power BI Update Carousel

Power BI Monthly Update - June 2025

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

June 2025 community update carousel

Fabric Community Update - June 2025

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