Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Filter Macro Help 1

Status
Not open for further replies.

Sridharan

Technical User
Dec 3, 2001
523
IN
Hi,

Does anyone have a macro which will go to the first cell of a row after applying an autofilter in an excel sheet dynamically i.e. after applying the filter and running the macro it should go to the first row of the filtered value. Sometime it can be A2 or sometime it can be A10 depending on the filter condition i give.

Any ideas.

Many A Thanks

Sri
 
How about something really simple ...

Sub GoToFirstRow()
Range("A1").Select
SendKeys ("{DOWN}")
End Sub

not sophiticated, but will do the trick.

Glenn.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top