Sub ListOutOT()
If regularOffTime<=signOffTime then
‘Code to print out OT confirmation list
End if
End sub
Sub CalcTime()
If regularOffTime<=signOffTime then
If realOT then
offTime=signOffTime
Else
offTime=regularOffTime
End if
Else
offTime=signOffTime
End If
End sub