Ok I am using a formula that creates a schedule. if the person is off that day no hours is shown giving me a if statement that is false so to hide the false i am using "". I would like it to state "OFF"
Formula #1 in cell c8 worksheet wk-1 schedule "please remember that we are dealing with time in these two formulas"
Time IN
=IF(COUNTIF(E8:S8,1),INDEX($E$6:$S$6,MATCH(1,E8:S8,0)),"")
Time Out
=IF(COUNTIF(E8:S8,1),INDEX($E$6:$S$6,MATCH(2,E8:S8,1)),"")
I am coping the output to a new worksheet. to build the schedule the employees see.
Called: worksheet Schedule
I have the days of the week. each day has a time in cell and a time out cell.
at the end it calculates the total hrs and hrs left the employee could potentially be assigned.
Here is the problem: Because my if statements is false if they are blank so i hide it with "". my calculations wont work on the next page giving me #value! error issue
Formula being used:
=((D9-C9)+(F9-E9)+(H9-G9)+(J9-I9)+(L9-K9)+(N9-M9)+(P9-O9))*24
and
='Employee List'!C9-Q9
Formula #1 in cell c8 worksheet wk-1 schedule "please remember that we are dealing with time in these two formulas"
Time IN
=IF(COUNTIF(E8:S8,1),INDEX($E$6:$S$6,MATCH(1,E8:S8,0)),"")
Time Out
=IF(COUNTIF(E8:S8,1),INDEX($E$6:$S$6,MATCH(2,E8:S8,1)),"")
I am coping the output to a new worksheet. to build the schedule the employees see.
Called: worksheet Schedule
I have the days of the week. each day has a time in cell and a time out cell.
at the end it calculates the total hrs and hrs left the employee could potentially be assigned.
Here is the problem: Because my if statements is false if they are blank so i hide it with "". my calculations wont work on the next page giving me #value! error issue
Formula being used:
=((D9-C9)+(F9-E9)+(H9-G9)+(J9-I9)+(L9-K9)+(N9-M9)+(P9-O9))*24
and
='Employee List'!C9-Q9
Last edited: