I have a Excel Where I want to empty the Cell content if multiple match is found like "SUP","AL" with in the Range
Image Link :
https://paste.pics/517160d93175e1e52a7ef6576524a322
My Code But not Working :
Dim c As Range
For Each c In Range("A7:AE7")
If c.Value = "SUP" OR "AL" Then
.Range.Clear
End If
Next c
Image Link :
https://paste.pics/517160d93175e1e52a7ef6576524a322
My Code But not Working :
Dim c As Range
For Each c In Range("A7:AE7")
If c.Value = "SUP" OR "AL" Then
.Range.Clear
End If
Next c