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
Anonymous
Not applicable

Datesinperiod between 2 dates

Is there a way to calculate DATESINPERIOD between 2 dates?

e.g.  DATE(2020,03,01) TO DATE(2021,02,28)

 

I currently have a calculation to get 365 days ago from today but I need from 1st March 2020 to 28th February 2021:

01 Annual % Counts = CALCULATE([01 No. of Counts]/[00 Total Delivered],DATESINPERIOD('looker_views lkr_Questionnaire'[Questionnaire_DateTime],today(),-365,Day))
 
Thanks
1 ACCEPTED SOLUTION
harshnathani
Community Champion
Community Champion

Hi @Anonymous ,

 

Try DatesBetween

 

01 Annual % Counts =
CALCULATE (
[01 No. of Counts] / [00 Total Delivered],
DATESBETWEEN (
'looker_views lkr_Questionnaire'[Questionnaire_DateTime],
DATE(2020,03,01) , DATE(2021,02,28)
)
)

 

 

 

01 Annual % Counts =
VAR a =
    DIVIDE (
        [01 No. of Counts],
        [00 Total Delivered]
    )
RETURN
    CALCULATE (
        a,
        DATESBETWEEN (
            'looker_views lkr_Questionnaire'[Questionnaire_DateTime],
            DATE(2020,03,01) , DATE(2021,02,28)
        )
    )

 

 

https://radacad.com/datesinperiod-vs-datesbetween-dax-time-intelligence-for-power-bi

 

 

Regards,

Harsh Nathani

View solution in original post

1 REPLY 1
harshnathani
Community Champion
Community Champion

Hi @Anonymous ,

 

Try DatesBetween

 

01 Annual % Counts =
CALCULATE (
[01 No. of Counts] / [00 Total Delivered],
DATESBETWEEN (
'looker_views lkr_Questionnaire'[Questionnaire_DateTime],
DATE(2020,03,01) , DATE(2021,02,28)
)
)

 

 

 

01 Annual % Counts =
VAR a =
    DIVIDE (
        [01 No. of Counts],
        [00 Total Delivered]
    )
RETURN
    CALCULATE (
        a,
        DATESBETWEEN (
            'looker_views lkr_Questionnaire'[Questionnaire_DateTime],
            DATE(2020,03,01) , DATE(2021,02,28)
        )
    )

 

 

https://radacad.com/datesinperiod-vs-datesbetween-dax-time-intelligence-for-power-bi

 

 

Regards,

Harsh Nathani

Helpful resources

Announcements
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.