P
Patrick.Killela
I am running a macro within excel
Sub change_to_Up()
Dim rr As Range
For Each rr In Selection
If rr.Value > 2 Then
rr.Value = "Up"
End If
Next rr
End Sub
Is there any way to edit this macro so that vales between 1 and 2 are
replaced with "Up"?
Many Thanks
Sub change_to_Up()
Dim rr As Range
For Each rr In Selection
If rr.Value > 2 Then
rr.Value = "Up"
End If
Next rr
End Sub
Is there any way to edit this macro so that vales between 1 and 2 are
replaced with "Up"?
Many Thanks