The ultimate Microsoft Fabric, Power BI, Azure AI, and SQL learning event: Join us in Stockholm, September 24-27, 2024.
Save €200 with code MSCUST on top of early bird pricing!
Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Is there a way to calculate the difference between two dates but break them out by months?
My table example is:
ID | Date Start | Date End | Duration |
123 | 12/11/2018 | 16/11/2018 | 5 |
123 | 02/01/2019 | 07/01/2019 | 6 |
1003 | 03/06/2019 | 07/08/2019 | 66 |
This count works fine for short dates within the same month but I'm hoping to get a month count between the start and end dates?
So I'm hoping to have some sort of breakout/ split to show:
ID | June | July | August |
1003 | 28 | 31 | 7 |
Thanks.
Solved! Go to Solution.
@Anonymous firstly, you need create a date table, which have no relationship with your fact table. then try this code
DaysCount :=
SUMX (
Table1,
VAR sd = Table1[Date Start]
VAR ed = Table1[Date End]
RETURN
CALCULATE (
COUNT ( 'Calendar'[Date] ),
KEEPFILTERS ( DATESBETWEEN ( 'Calendar'[Date], sd, ed ) )
)
)
@Anonymous , refer if this file, I created in the past for similar problem can help
https://www.dropbox.com/s/bqbei7b8qbq5xez/leavebetweendates.pbix?dl=0
@Anonymous firstly, you need create a date table, which have no relationship with your fact table. then try this code
DaysCount :=
SUMX (
Table1,
VAR sd = Table1[Date Start]
VAR ed = Table1[Date End]
RETURN
CALCULATE (
COUNT ( 'Calendar'[Date] ),
KEEPFILTERS ( DATESBETWEEN ( 'Calendar'[Date], sd, ed ) )
)
)
Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.
Check out the August 2024 Power BI update to learn about new features.
User | Count |
---|---|
18 | |
18 | |
17 | |
15 | |
11 |
User | Count |
---|---|
35 | |
34 | |
19 | |
19 | |
14 |