The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
I am trying to get the duration between two dates in months and I am getting some inconsistent results
e.g.
start date | end date | duration in months |
14 June 2022 | 05 July 2022 | 1 |
21 October 2023 | 12 January 2024 | 3 |
The above two durations are incorrect as whole months have not been taken into account.
Dax
Duration = DATEDIFF(start_date, end_date, MONTH)
Solved! Go to Solution.
Hi @akhaliq7 ,
Regarding your question, 'DATEDIFF' calculates the difference between two date months. Even if 'EndDate' is the first day of the new month, it counts as an additional month. You can modify your expression.
Column =
VAR _a = DATEDIFF([start date],[end date],MONTH)
VAR _b = IF(DAY([end date]) >= DAY([start date]) , _a ,_a - 1)
RETURN _b
If my understanding is wrong, please state your expected outcome.
Best Regards,
Wenbin Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @akhaliq7 ,
Regarding your question, 'DATEDIFF' calculates the difference between two date months. Even if 'EndDate' is the first day of the new month, it counts as an additional month. You can modify your expression.
Column =
VAR _a = DATEDIFF([start date],[end date],MONTH)
VAR _b = IF(DAY([end date]) >= DAY([start date]) , _a ,_a - 1)
RETURN _b
If my understanding is wrong, please state your expected outcome.
Best Regards,
Wenbin Zhou
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
thanks @Anonymous
User | Count |
---|---|
62 | |
59 | |
54 | |
51 | |
33 |
User | Count |
---|---|
179 | |
87 | |
70 | |
48 | |
45 |