J
Josiah
OK...keep in mind I'm VERY new to VB. Look at this code:
Application.ScreenUpdating = False
With ActiveSheet
If Range("C23").Value <> "4C" Then
.CheckBoxes("Check Box 56").Value = False
msg = "Color is unavailable for this page using the selected pag
count."
MsgBox msg, vbOKOnly, "Runsheet Alert"
End If
End With
OK...Instead of range "C23" being limited to "4C", I want it to sa
something along the lines of:
If Range("C23").Value <> "4C" or "1C"
What's the proper way to write this
Application.ScreenUpdating = False
With ActiveSheet
If Range("C23").Value <> "4C" Then
.CheckBoxes("Check Box 56").Value = False
msg = "Color is unavailable for this page using the selected pag
count."
MsgBox msg, vbOKOnly, "Runsheet Alert"
End If
End With
OK...Instead of range "C23" being limited to "4C", I want it to sa
something along the lines of:
If Range("C23").Value <> "4C" or "1C"
What's the proper way to write this