Hello all, this is the base code I have so far, it is not correct - I need the main macro to run if the value in "E14" is = 0.
If the value is 1 - the message should say "Denied" and ExitSub End If
If the value is 2 - the message should say "Okay" and Exit Sub End If
Thanks for your help
If the value is 1 - the message should say "Denied" and ExitSub End If
If the value is 2 - the message should say "Okay" and Exit Sub End If
Thanks for your help
Code:
If Range("E14").Value = 0 Then
Else
MsgBox "Okay"
Exit Sub
End If