Say I have a spreadsheet with a column for the date and a column for the number of hours worked. The spreadsheet will be limited to one calendar year.
I want to add an "attendance" column. To achieve perfect (100% attendance), one must have hours (any nonzero number of hours) logged for Tuesday, Wednesday, and Thursday of each week.
example:
DATE HOURS ATT (%)
02/02/24 3 100
02/03/24 3 100
02/04/24 3 100
02/09/24 2 100
02/10/24 0 80
02/11/24 3 83.3
What would the best way to "code" this be?
Thanks.
I want to add an "attendance" column. To achieve perfect (100% attendance), one must have hours (any nonzero number of hours) logged for Tuesday, Wednesday, and Thursday of each week.
example:
DATE HOURS ATT (%)
02/02/24 3 100
02/03/24 3 100
02/04/24 3 100
02/09/24 2 100
02/10/24 0 80
02/11/24 3 83.3
What would the best way to "code" this be?
Thanks.