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

Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started

Reply
Anonymous
Not applicable

Count Difference between dates broken out by month

Is there a way to calculate the difference between two dates but break them out by months?

 

My table example is:

IDDate StartDate EndDuration
12312/11/201816/11/20185
12302/01/201907/01/20196
100303/06/201907/08/201966

 

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:

IDJuneJulyAugust
100328317

 

Thanks.

1 ACCEPTED SOLUTION
wdx223_Daniel
Super User
Super User

@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 ) )
        )
)

wdx223_Daniel_0-1603672467586.png

 

 

View solution in original post

2 REPLIES 2
amitchandak
Super User
Super User

@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

wdx223_Daniel
Super User
Super User

@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 ) )
        )
)

wdx223_Daniel_0-1603672467586.png

 

 

Helpful resources

Announcements
Europe Fabric Conference

Europe’s largest Microsoft Fabric Community Conference

Join the community in Stockholm for expert Microsoft Fabric learning including a very exciting keynote from Arun Ulag, Corporate Vice President, Azure Data.

AugPowerBI_Carousel

Power BI Monthly Update - August 2024

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

August Carousel

Fabric Community Update - August 2024

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