Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() super simple q i want to save the row number at the end of the list of the data. what is the command for that? i can't use selection.rows.count because its not a selection of multiple rows.. thanks -- narutard ------------------------------------------------------------------------ narutard's Profile: http://www.excelforum.com/member.php...o&userid=25111 View this thread: http://www.excelforum.com/showthread...hreadid=467858 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
it depends on your sheet / data list layout - where is the list??
Activesheet.Cells.SpecialCells(xlCellTypeLastCell) .Row is my favorite for the last used row on a sheet. "narutard" wrote: super simple q i want to save the row number at the end of the list of the data. what is the command for that? i can't use selection.rows.count because its not a selection of multiple rows.. thanks -- narutard ------------------------------------------------------------------------ narutard's Profile: http://www.excelforum.com/member.php...o&userid=25111 View this thread: http://www.excelforum.com/showthread...hreadid=467858 |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]() i 'm looking for 1 a 2 b 3 c 4 d 5 e 6 f ... 485 zzzz so...i want the command that figures out which row zzzz is -- narutard ------------------------------------------------------------------------ narutard's Profile: http://www.excelforum.com/member.php...o&userid=25111 View this thread: http://www.excelforum.com/showthread...hreadid=467858 |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi Narutard,
Try: Dim rw As Long rw = Cells(Rows.Count, "A").End(xlUp).Row --- Regards, Norman "narutard" wrote in message ... i 'm looking for 1 a 2 b 3 c 4 d 5 e 6 f .. 485 zzzz so...i want the command that figures out which row zzzz is -- narutard ------------------------------------------------------------------------ narutard's Profile: http://www.excelforum.com/member.php...o&userid=25111 View this thread: http://www.excelforum.com/showthread...hreadid=467858 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Macro - save to current location vs excel default location | Excel Discussion (Misc queries) | |||
location | Excel Discussion (Misc queries) | |||
Tab location | Excel Discussion (Misc queries) | |||
Go To Location | Excel Programming | |||
xlb location | Excel Programming |