Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Hi there,
I have a list of absences with start date and end date. Some absences have no end date as they remain open. How can I work out the number of working days lost for these absences to date? I have tried both a TOTALYTD and TOTAL MTD DAX function but it is giving an answer of 1 even for absences which started months ago. I also need the measure to be dynamic in that it will only calculate the working days lost within May, even if absences started in March for example.
I am really struggling with the restrictive nature of this data with this report!
Thanks.
Hi, @JK_PowerBINew
Can you provide some sample data or simple pbix files? Sensitive information can be removed in advance. What kind of expected results do you expect? You can also show it with pictures.
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hello:
Please check link for solution. I have created the model you need to get at this analysis. Measures include Freq of Absense and Days Absent, excluding weekends. I have used some data I had on students but same thing for employees. Note separate date table and dim table for students/employees. Please mark as solution if this works for you. Thanks!
https://drive.google.com/file/d/1RR_NfZ-39VWfETeQQA-4-pTPd5dLV--K/view?usp=sharing
Hi @JK_PowerBINew
I don't have enough information but for the given information it seems to me that somehow you need to iterate over the table probably using SUMX while you can use COALESCE to return TODAY ( ) incase the end date is blank. Something like
=
SUMX (
TableName,
VAR StartDate = TableName[Start Date]
VAR EndDate =
COALESCE ( TableName[End Date], TODAY () )
RETURN
DATEDIFF ( StartDate, EndDate, DAY )
)
For comulative total you can use
=
CALCULATE (
SUMX (
TableName,
VAR StartDate = TableName[Start Date]
VAR EndDate =
COALESCE ( TableName[End Date], TODAY () )
RETURN
DATEDIFF ( StartDate, EndDate, DAY )
),
'Date'[Date] <= MAX ( 'Date'[Date] )
)
I hope you have a date table
Thank you for this. I will try it out and get back to you.
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.