Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
Could you please provide me with a VBA code to perform the following task: There are records in a sheet and I need to move the Cell pointer to the next row after the last record. Right now i press CTRL+DownArrow and again DownArrow. Need a VBA code which will do this. Thankyou. MADHU |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() Cells(Rows.Count,"A").End(xlUp).Offset(1,0).Select -- HTH RP (remove nothere from the email address if mailing direct) "madhu" wrote in message ... Hi, Could you please provide me with a VBA code to perform the following task: There are records in a sheet and I need to move the Cell pointer to the next row after the last record. Right now i press CTRL+DownArrow and again DownArrow. Need a VBA code which will do this. Thankyou. MADHU |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Another (more literal way)
ActiveCell.End(xldown).Offset(1,0).Select -- Regards, Tom Ogilvy "madhu" wrote in message ... Hi, Could you please provide me with a VBA code to perform the following task: There are records in a sheet and I need to move the Cell pointer to the next row after the last record. Right now i press CTRL+DownArrow and again DownArrow. Need a VBA code which will do this. Thankyou. MADHU |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Simple Code, I think... | Excel Worksheet Functions | |||
need a simple code | Excel Programming | |||
Simple Code Help | Excel Programming | |||
Simple For Each Next code | Excel Programming | |||
Simple For Each Next code | Excel Programming |