How would I state the following in VBA? ...
Below is my question on how to state in VBA. Would go right after "Else" in the above code" ...
Thanks for any help everyone
Code:
If ActiveCell.Offset(0, 1) > -1 AND _
ActiveCell.Offset(0, 2) > -1 Then
ActiveCell.Offset(1, 0)
Else
Below is my question on how to state in VBA. Would go right after "Else" in the above code" ...
Smallest number (must be greater than -1) in the range of ActiveCell.Offset(0, 2):ActiveCell.Offset(0, 5)
Thanks for any help everyone