Hi HamzaJ -
Thanks for your reply - it was very informational. I'm still running into a snag when a day's value is 0/null. I'll try my best to explain..
I currently have this date filter set to view last week from SUN (02/06) through SAT (02/12).
The screenshot below gives the actual values for each of the days worked, which is correct.
To simplify my original equation, my goal is to record the actual hours worked through Wednesday and then:
- IF a day is a weekday AND no hours were actually worked, then +8 for each of those weekday(s)
- OR a weekday has not yet occurred (Thursday, Friday), then +8 for each of those weekday(s)
This excel model shows how it should be calculating the final values highlighted in green.
![]()
However, the formula expression below is only counting the actual values.
((SUM([Employee Regular Paid]),[SUNDAY])
+IF((SUM([Employee Regular Paid]),[MONDAY])=0,8,(SUM([Employee Regular Paid]),[MONDAY]))
+IF((SUM([Employee Regular Paid]),[TUESDAY])=0,8,(SUM([Employee Regular Paid]),[TUESDAY]))
+IF((SUM([Employee Regular Paid]),[WEDNESDAY])=0,8,(SUM([Employee Regular Paid]),[WEDNESDAY]))
+480 (FOR THURSDAY)
+480 (FOR FRIDAY)
)/60
Any ideas/suggestions as to why it is not picking up the 8 value when a day is null/0?
Thanks!!!
-Carter