Hi,
I'm looking for a quick macro that moves the cursor to the next cell in the current column that does not match the current cell's value.
The following code works but is VERY inefficient.
I had a macro that did this instantaneously but I lost it with a harddrive crash. Please help!
I'm looking for a quick macro that moves the cursor to the next cell in the current column that does not match the current cell's value.
The following code works but is VERY inefficient.
Code:
Sub MoveDown()Application.ScreenUpdating = False
Do
ActiveCell.Offset(1, 0).Select
Loop Until ActiveCell <> ActiveCell.Offset(-1, 0)
Application.ScreenUpdating = True
End Sub
I had a macro that did this instantaneously but I lost it with a harddrive crash. Please help!