Need help in selecting a cell after filter
hi experts,
can anyone help me in vba code to select next visible cell below the header.
after filtering i need to select next visible cell below a1(header cell).
thanku
ExcelExperts.comExcel Consultancy, VBA Consultancy, Training and Tips Call:+442081234832 |
|
Excel / VBA ConsultancyFree Training VideosFree SpreadsheetsExcel / VBA JobsNavigationWho's onlineThere are currently 0 users and 342 guests online.
New Excel Experts
Current Excel / VBA Jobs |
Need help in selecting a cell after filterhi experts, can anyone help me in vba code to select next visible cell below the header. after filtering i need to select next visible cell below a1(header cell). thanku |
Highest Ranked Users
Recent Blogs
ForumsRecent comments
User login |
Try this:
Range("A4:A12").Select ' example of filtered range where column header is in A1, and A2 and A3 are hidden by filter
Selection.SpecialCells(xlCellTypeVisible).Select