Hi guys
Im trying to delete a couple of columns that contain certain words but cant seem to get it to work.
This is what i got so far
Set MR = Range("R10:DA80")
For Each cell In MR
If cell.Value = "Total Prod Changes" or "All Prod" Then cell.EntireColumn.Delete
Next