Hi,
I need to have a macro loop through row by row of data in an Excel database… when it loops through each row and the result of column A is the letter S, then go to row R thru Z and clear the contents. If it isn’t the letter S, then leave it alone and go to the next line. The code below is what I have so far, IF the letter in column A happened to be in row 66…
As always… thanks for the help!
Lana
Sub deletesubtotalzeros()
Range(“R66:Z66”).Select
Selection.ClearContents
End Sub