I have a silly piece of code that tests if a variable is a certain string:
If Target.Cell.Value = "1M" or Target.Cell.Value = "1N" or Target.Cell.Value = "1O" Then
...
End If
Is there a way to compress that If statement - ie compare against a list or something like that?