One column contains an IF statement [ =IF($A12=1,IF($F12=3,3,""),"") ] that provides a value of 3 if true. There are 20000 rows in this column and only a few values are 3 so how do i jump from one 3 to the next one without having to page down?
I've tried some VBA in a macro:
Do While IsEmpty(ActiveCell.Value) = False
ActiveCell.Offset(1, 0).Select
Loop
End Sub
But this searches the whole column until the IF statements stop. Then it stops. How do I tell it to look for cells that are not empty even though they all contain the If statements?
I don't want to hard code the value 3 because it needs to be changed.
I've tried some VBA in a macro:
Do While IsEmpty(ActiveCell.Value) = False
ActiveCell.Offset(1, 0).Select
Loop
End Sub
But this searches the whole column until the IF statements stop. Then it stops. How do I tell it to look for cells that are not empty even though they all contain the If statements?
I don't want to hard code the value 3 because it needs to be changed.