Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
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:
Solved! Go to Solution.
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
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