Hi @Matt383 ,
Please see below - you have also quotes around " / 40 " which appears to be a division calculation?
Sum(
Filter(
TimeEntries,
Employee.Email = currentUser.Email &&
'Week Start' =
DateAdd(
Today(),
1-Weekday(
Today(),
Monday
),
Days
)
),
Total
) / 40 & Char(10) & "Hours"
also DateAdd is not Delegable, however this should be
With(
{
wDate:
DateAdd(
Today(),
1-Weekday(
Today(),
Monday
),
Days
)
},
Sum(
Filter(
TimeEntries,
Employee.Email = currentUser.Email &&
'Week Start' = wDate
),
Total
) / 40 & Char(10) & "Hours"
)
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.