Im back again!
Im severely dissapointed my code is not finished!
The problem i have now, is that i need a check box to be checked if the time (placed in Cell(1,5)) is between set times
they are as follows
17:00 to 18:45 Mon, Tue, Wed, Thur, Sun
17:00 to 18:00 Fri, Sat
The code that i have doesn't seem to do anything.
The time in the Cell IS formatted as time, Does this need to be changed?
CODE
If Weekday(Now()) = vbMonday Or vbTuesday Or vbWednesday Or vbThursday Or vbSunday And Cells(1, 5) > "17:00" < "18:45" Then
chkfh.Value = True
Else
If Weekday(Now()) = vbFriday Or vbSaturday And Cells(1, 5) > "17:00" < "18:00" Then
chkfh.Value = True
Else
chkfh.Value = False
End If
End If
Thanks everyone once again
(sorry martyr2 for no response to my last post Its been hectic as hell here!)