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
Anonymous
Not applicable

Calculate days between dates that cross months

Hi, 

I'm at an impass, I've got a table with the start and end date and a column that identifes the number of dates in between.

 

aguest1005_0-1650970091490.png

 

I've written the following measure

Absence Days in Mth =

VAR firstDayOfMonth =

    MIN ( 'DateDimension'[Date] )

VAR lastDayOfMonth =

    MAX ( 'DateDimension'[Date]  )

RETURN

    SUMX (

        Absence,

        VAR s =

            MAX ( Absence[StartDate], firstDayOfMonth )

        VAR e =

            MIN (Absence[EndDate], lastDayOfMonth )

        RETURN

            IF ( s < e, DATEDIFF ( s-1, e, DAY ) )

    )

 

When I put this measure as a card on my report and then use the Month (date Table) as a filter I get the correct value for March of 4. For April I get 30 rather than 30 + 22 from the first row.

 

My date table is joined to the absence table on date - startdate.

 

How do I get this so it picks up the April figure of the first record when I filter for April.


TIA

1 ACCEPTED SOLUTION
CNENFRNL
Community Champion
Community Champion

In general, calendar table in such inteval calculations doesn't function as a dimension like other date-oriented analysis.

 

Tricky solution to the tricky question,

CNENFRNL_0-1650982922647.png


Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

View solution in original post

2 REPLIES 2
CNENFRNL
Community Champion
Community Champion

In general, calendar table in such inteval calculations doesn't function as a dimension like other date-oriented analysis.

 

Tricky solution to the tricky question,

CNENFRNL_0-1650982922647.png


Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

Anonymous
Not applicable

Thank you, thats worked perfectly.

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
Top Kudoed Authors