joe.muckle
Board Regular
- Joined
- Oct 19, 2010
- Messages
- 132
Hi guru's
Does anyone know how to offset to a visible cell without using a loop??
I currently use the code:
I need to do this without the loop as my worksheet is getting to around 20,000 rows and the macro takes a long time to run !!
Any ideas ??
Thanks in advance,
Joe.
Does anyone know how to offset to a visible cell without using a loop??
I currently use the code:
Code:
Do
ActiveCell.Offset(1, 0).Select
Loop Until ActiveCell.EntireRow.Hidden = False
I need to do this without the loop as my worksheet is getting to around 20,000 rows and the macro takes a long time to run !!
Any ideas ??
Thanks in advance,
Joe.