Hi, there seems to be an error in the days formula, can anyone assist?
Sum(Filter(TimeEntries,Employee.Email = currentUser.Email && 'Week Start' = DateAdd(
Today(),
-1 * (Weekday(
Today(),
Monday
) - 1),
Days
)),Total) &" / 40 " & Char(10) & "Hours"
Thanks Warren
Thanks Warren
Hi @Matt383 ,
Just checking if you got the result you were looking for on this thread. Happy to help further if not.
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.
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.