ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Moving the Cell Selection Within AutoFilter (https://www.excelbanter.com/excel-programming/367098-moving-cell-selection-within-autofilter.html)

ajvasel

Moving the Cell Selection Within AutoFilter
 
In my program, when I enable AutoFilter, I want to select cell E4 and move
down 2 cells and enter text.

I tried using
ActiveCell.Offset(2, 0).Activate

but that just places the cell in E6. I want to be able to space down 2
cellls below E4 no matter what the row number is. How can I do this? Thx

Tom Ogilvy

Moving the Cell Selection Within AutoFilter
 
Sub MoveDown2()
Dim cnt as Long, i as Long
cnt = 0
i = activecell.row
do while cnt < 2
i = i + 1
if rows(i).Hidden = False then cnt = cnt + 1
Loop
cells(i,activecell.column).Select
End Sub
--
Regards,
Tom Ogilvy


"ajvasel" wrote:

In my program, when I enable AutoFilter, I want to select cell E4 and move
down 2 cells and enter text.

I tried using
ActiveCell.Offset(2, 0).Activate

but that just places the cell in E6. I want to be able to space down 2
cellls below E4 no matter what the row number is. How can I do this? Thx


ajvasel

Moving the Cell Selection Within AutoFilter
 
Thanks Tom - worked perfectly!


All times are GMT +1. The time now is 08:16 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com