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
Niiru1
Helper V
Helper V

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

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

@Niiru1 , 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

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