Hi Guys,

I've been asked to look at a document for a colleague.

They have the following code:

If Target.Column <> 6 Then
Exit Sub 'Wrong column clicked on
End If
This stops the Macro if it wasn't run from column F.

They want to add it to column G (7) How do I add it so that it says to the effect of

If Target.Column <> 6 or 7 Then
Exit Sub 'Wrong column clicked on
End If