berty2000
Board Regular
- Joined
- Mar 29, 2011
- Messages
- 71
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
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
Code:
Set MR = Range("R10:DA80")
For Each cell In MR
If cell.Value = "Total Prod Changes" or "All Prod" Then cell.EntireColumn.Delete
Next