Hey,
I have an extension checkbox on my form of which i only want visible when Friday or Saturday is selected from the "day" combo list.
Need a bit of help correcting this.
Thanks
P.S sorry about title i didn't know how to phrase it lol
I have an extension checkbox on my form of which i only want visible when Friday or Saturday is selected from the "day" combo list.
Code:
Private Sub Day_Change()
If Day = "Friday" Or "Saturday" Then
Extension.SetFocus
Extension.Visible = True
Else
Extension.SetFocus
Extension.Visible = False
End If
End Sub
Need a bit of help correcting this.
Thanks
P.S sorry about title i didn't know how to phrase it lol