Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
I have several ws I use as check registers. I'd like to be able to go
to the last non-blank row in that ws when I click that register's ws from the index page. It would always be the next available row in the applicable ws. Is there a way from HYPERLINK to do that or maybe a function once I get there? Macro? TIA |
#2
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
here are a couple different ways:
this will select the cell. it's not a good practice to select, but just used as an illustration here. range(worksheets("Sheet1").cells(rows.Count,"A").e nd(xlup).address).Select Sub FindLastCell1() Cells(Rows.Count, "A").End(xlUp).Select End Sub You can record a macro, hit ctrl+down arrow key and look at the code. Good learning experience! -- Ryan--- If this information was helpful, please indicate this by clicking ''Yes''. "Jack Deuce" wrote: I have several ws I use as check registers. I'd like to be able to go to the last non-blank row in that ws when I click that register's ws from the index page. It would always be the next available row in the applicable ws. Is there a way from HYPERLINK to do that or maybe a function once I get there? Macro? TIA . |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Hyperlinking | Excel Discussion (Misc queries) | |||
Hyperlinking | Excel Discussion (Misc queries) | |||
Help! Hyperlinking? | Excel Discussion (Misc queries) | |||
Hyperlinking | Excel Worksheet Functions | |||
Hyperlinking when it shouldn't... | Excel Worksheet Functions |