I'm trying to clear the color pattern that I've put into a range of cells. I ran record a macro to come up with the code. However, now I keep getting an error 1004, select method of range class failed
Listed below is the code I'm using
Sheets("Outputs 2").Range("B19:M24").Select
Application.CutCopyMode = False
With Selection.Interior
.Pattern = xlNone
.TintAndShade = 0
.PatternTintAndShade = 0
End With
Any help is greatly appreciated. This forum has helped me tremendously over the past couple of weeks.