View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default autofilter : how to go to next row ?

do
ActiveCell.Offset(1,0).Select
Loop until activecell.EntireRow.Hidden = False


--
Regards,
Tom Ogilvy


"François" wrote in message
...
Hello,
I'm searching the correct syntax to go the the next cell(s) when

autofilter
is active.
When I do activeCell.Offset(1,0).Select, it goes to a row which is not

part
of the autofilter criterias.
Many thanks for your valuable help.

François