Get certified in Microsoft Fabric—for free! For a limited time, the Microsoft Fabric Community team will be offering free DP-600 exam vouchers. Prepare now
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;
The desired result would be
Feb days lost = 5
Mar days lost = 8
Any help would be greatly appreciated!
Solved! Go to Solution.
@Anonymous
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())))
pls see the attachment below
Proud to be a Super User!
@Anonymous
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())))
pls see the attachment below
Proud to be a Super User!
you are welcome
Proud to be a Super User!
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
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 )
)
Check out the October 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
113 | |
96 | |
91 | |
82 | |
69 |
User | Count |
---|---|
159 | |
125 | |
116 | |
111 | |
95 |