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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

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
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

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

April Fabric Community Update

Fabric Community Update - April 2024

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

Top Solution Authors