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

Almir's picture

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