Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi All,
I have a table that is one column, employee names and the next column employee hire dates. I'm trying to calculate available work hours from each employee's start date through the latest date on my date slicer.
Hi @justincordasco ,
Your slicer is based on a date in a date tabel, otherwise create one.
Make sure you can the workingdays are indicated,
then a measure like this will get you the workingdays until a certain point in time. They can then be calculated with number available working hours per day.
ExclWorkingDays =
var EmployeeHireDate = MAX(Employees[HireDate])
var HoursAvailable = CALCULATE (
COUNTROWS (
Filter (
'Dates',
Dates[Date] >= EmployeeHireDate && Dates[IsWorkingDay] = "1"
)
) * 8 -- hours working per day
)
return HoursAvailable
hope this helps,
jan
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 8 | |
| 6 | |
| 5 | |
| 5 | |
| 4 |
| User | Count |
|---|---|
| 25 | |
| 16 | |
| 8 | |
| 7 | |
| 7 |