R
Rasmus
Current activecell is A13 and I'm using autofilter. What the VBA command to
go to the next VISIBLE cell below - i.e. A21 ?
Regards,
Rasmus
go to the next VISIBLE cell below - i.e. A21 ?
Regards,
Rasmus
Rasmus said:Current activecell is A13 and I'm using autofilter. What the VBA
command to go to the next VISIBLE cell below - i.e. A21 ?
Hi Sir,Rasmus wrote:
> Current activecell is A13 and I'm using autofilter. What the VBA
> command to go to the next VISIBLE cell below - i.e. A21 ?
>
Hi, Rasmus.
Try this
......
ActiveCell.Offset(1, 0).Activate
Do While ActiveCell.EntireRow.Hidden = True
ActiveCell.Offset(1, 0).Activate
Loop
......
Hi, Rasmus.
Try this
......
ActiveCell.Offset(1, 0).Activate
Do While ActiveCell.EntireRow.Hidden = True
ActiveCell.Offset(1, 0).Activate
Loop
......