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
Gav10
Helper II
Helper II

Number of sick days lost per month

Hi

 

I'm trying to calculate the number of sick days lost in any given month and just hitting a brick wall!

 

I have a table of absence data with an absence start date and absence end date (which can be blank due to absence not yet finished), and also a date table in my model.

I'm able to calculate the total days lost for each individual absence event, but what i would like to do is calculate the days lost in each month and then plot on a visual

 

The data looks a bit like the below;

 

Untitled.png

 

The desired result would be

 

Feb days lost = 5

Mar days lost = 8 

 

Any help would be greatly appreciated!

1 ACCEPTED SOLUTION
ryan_mayu
Super User
Super User

@Gav10 

you can try to create a date table and a column

 

Column = COUNTROWS(FILTER('Table','Table'[Absence Start Date]<='date'[Date] &&('Table'[Absence End Date]>='date'[Date])||('Table'[Absence Start Date]<='date'[Date] &&ISBLANK('Table'[Absence End Date])&&'date'[Date]<=today())))

 

 

1.PNG

pls see the attachment below





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




View solution in original post

5 REPLIES 5
ryan_mayu
Super User
Super User

@Gav10 

you can try to create a date table and a column

 

Column = COUNTROWS(FILTER('Table','Table'[Absence Start Date]<='date'[Date] &&('Table'[Absence End Date]>='date'[Date])||('Table'[Absence Start Date]<='date'[Date] &&ISBLANK('Table'[Absence End Date])&&'date'[Date]<=today())))

 

 

1.PNG

pls see the attachment below





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




@ryan_mayu thank you! This appears to work perfectly and a tidy solution

you are welcome





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!




Gav10
Helper II
Helper II

Thanks for the reply John, but i'm afraid this isn't giving me the desired result. For instance in my live dataset it's telling me just one day was lost on 28 Feb when i can see it's lots more from the raw data

johnt75
Super User
Super User

Try

Days lost =
VAR MinDate =
    MIN ( 'Date'[Date] )
VAR MaxDate =
    MAX ( 'Date'[Date] )
VAR FullAbsenceTable =
    GENERATE (
        SUMMARIZE (
            'Table',
            'Table'[Employee ID],
            'Table'[Absence start date],
            'Table'[Absence end date]
        ),
        VAR StartDate = 'Table'[Absence start date]
        VAR EndDate =
            MINX ( { 'Table'[Absence end date], TODAY (), MaxDate }, [Value] )
        RETURN
            CALENDAR ( StartDate, EndDate )
    )
RETURN
    COUNTROWS (
        FILTER ( FullAbsenceTable, [Date] >= MinDate && [Date] <= MaxDate )
    )

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.