I get an error if I try to move to the next value within a For statement within an IF. Here's my codeThanks in advance.![]()
Sub Replacing() Dim Cell As Range Dim SelectRng As Range Set SelectRng = Selection For Each Cell In SelectRng If IsError(Cell.Value) Then Next End If If Cell.Value > 35 Then Cell.Value = 35 Next End Sub
Bookmarks