Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
A colleague of mine has spreadsheet of over 4,000 entries.
She's constantly autofiltering to fill in missing bits of info but it's driving her crazy that she can't just go from whatever cell she is in the middle of the rows down to the first blank row at the very bottom. The 'Page Up' and 'Page Down' aren't exact and 'End' doesn't seem to do anything. It sounds like such a simple thing to do... but... um... perhaps I'm just not searching for the right vocabulary words to find any hints or tips? So... I come to you(se) all-knowing kindly peoples :-) Help? grazie und merci. |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
try playing with Ctrl+Home, Ctrl+End (last cell in usedrange which is not
always the last cell with data), Ctrl+Down Arrow, Ctrl+Up Arrow the Ctrl+Arrow keys will take you to the top or bottom (or left or right) of the table - but will stop in the middle if there are gaps. I usually click on a column I know has *no gaps* and use Ctrl+Down Arrow to get to the bottom of the table or I use a column that is *empty* and use Ctrl+Down Arrow to get to the bottom of the spreadsheet (row 65536) then select the column I actually need and use Ctrl+Up Arrow to get to the last cell. you could also use a macro to get to the last cell w/data in it for whatever column you are in - you could create a button on your toolbar and assign the macro to it. Sub LastRow() Dim rngBottom As Range Set rngBottom = Cells(Rows.Count, ActiveCell.Column) If IsEmpty(rngBottom) Then rngBottom.End(xlUp).Activate Else: rngBottom.Activate End If End Sub "MS Questionnairess" wrote: A colleague of mine has spreadsheet of over 4,000 entries. She's constantly autofiltering to fill in missing bits of info but it's driving her crazy that she can't just go from whatever cell she is in the middle of the rows down to the first blank row at the very bottom. The 'Page Up' and 'Page Down' aren't exact and 'End' doesn't seem to do anything. It sounds like such a simple thing to do... but... um... perhaps I'm just not searching for the right vocabulary words to find any hints or tips? So... I come to you(se) all-knowing kindly peoples :-) Help? grazie und merci. |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Thank you Don and JMB
The problem with this scenario is that the Ctrl+End or Ctrl+Down Arrow is that it takes my colleague right down all the 2000 blank (but formula-formated) rows at the bottom. There are going to be empty cells within rows. That's why she's constantly moving around the sheet; inputting information as it becomes available. I've never done a macro before... but, JMB, yours works!! Not exactly... but pretty darned happy close enough hurray-ly. My colleague is in awe of me and I'm just humbled. Thank you, thank you, thank you! Weeeeeeeee :-) "JMB" wrote: try playing with Ctrl+Home, Ctrl+End (last cell in usedrange which is not always the last cell with data), Ctrl+Down Arrow, Ctrl+Up Arrow the Ctrl+Arrow keys will take you to the top or bottom (or left or right) of the table - but will stop in the middle if there are gaps. I usually click on a column I know has *no gaps* and use Ctrl+Down Arrow to get to the bottom of the table or I use a column that is *empty* and use Ctrl+Down Arrow to get to the bottom of the spreadsheet (row 65536) then select the column I actually need and use Ctrl+Up Arrow to get to the last cell. you could also use a macro to get to the last cell w/data in it for whatever column you are in - you could create a button on your toolbar and assign the macro to it. Sub LastRow() Dim rngBottom As Range Set rngBottom = Cells(Rows.Count, ActiveCell.Column) If IsEmpty(rngBottom) Then rngBottom.End(xlUp).Activate Else: rngBottom.Activate End If End Sub "MS Questionnairess" wrote: A colleague of mine has spreadsheet of over 4,000 entries. She's constantly autofiltering to fill in missing bits of info but it's driving her crazy that she can't just go from whatever cell she is in the middle of the rows down to the first blank row at the very bottom. The 'Page Up' and 'Page Down' aren't exact and 'End' doesn't seem to do anything. It sounds like such a simple thing to do... but... um... perhaps I'm just not searching for the right vocabulary words to find any hints or tips? So... I come to you(se) all-knowing kindly peoples :-) Help? grazie und merci. |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You said earlier that <End doesn't seem to do anything. You need to
follow it with an arrow key, and the cursor will move in that direction to the last contiguous cell with data in it. So if you are in a column with data in it and press <End once followed by <down- arrow this will take you to the bottom cell of contiguous data (i.e. it will stop at the next blank cell). Hope this helps. Pete On Jul 4, 7:02 pm, MS Questionnairess wrote: Thank you Don and JMB The problem with this scenario is that the Ctrl+End or Ctrl+Down Arrow is that it takes my colleague right down all the 2000 blank (but formula-formated) rows at the bottom. There are going to be empty cells within rows. That's why she's constantly moving around the sheet; inputting information as it becomes available. I've never done a macro before... but, JMB, yours works!! Not exactly... but pretty darned happy close enough hurray-ly. My colleague is in awe of me and I'm just humbled. Thank you, thank you, thank you! Weeeeeeeee :-) "JMB" wrote: try playing with Ctrl+Home, Ctrl+End (last cell in usedrange which is not always the last cell with data), Ctrl+Down Arrow, Ctrl+Up Arrow the Ctrl+Arrow keys will take you to the top or bottom (or left or right) of the table - but will stop in the middle if there are gaps. I usually click on a column I know has *no gaps* and use Ctrl+Down Arrow to get to the bottom of the table or I use a column that is *empty* and use Ctrl+Down Arrow to get to the bottom of the spreadsheet (row 65536) then select the column I actually need and use Ctrl+Up Arrow to get to the last cell. you could also use a macro to get to the last cell w/data in it for whatever column you are in - you could create a button on your toolbar and assign the macro to it. Sub LastRow() Dim rngBottom As Range Set rngBottom = Cells(Rows.Count, ActiveCell.Column) If IsEmpty(rngBottom) Then rngBottom.End(xlUp).Activate Else: rngBottom.Activate End If End Sub "MS Questionnairess" wrote: A colleague of mine has spreadsheet of over 4,000 entries. She's constantly autofiltering to fill in missing bits of info but it's driving her crazy that she can't just go from whatever cell she is in the middle of the rows down to the first blank row at the very bottom. The 'Page Up' and 'Page Down' aren't exact and 'End' doesn't seem to do anything. It sounds like such a simple thing to do... but... um... perhaps I'm just not searching for the right vocabulary words to find any hints or tips? So... I come to you(se) all-knowing kindly peoples :-) Help? grazie und merci.- Hide quoted text - - Show quoted text - |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Well... that makes sense :-)
And it works as well as the macro. And now my colleague is more in awe of me and I'm feeling kinda dumb I couldn't figure out that part of the instructions myself :-) Thanks for the perfect clarification, Pete_UK. "Pete_UK" wrote: You said earlier that <End doesn't seem to do anything. You need to follow it with an arrow key, and the cursor will move in that direction to the last contiguous cell with data in it. So if you are in a column with data in it and press <End once followed by <down- arrow this will take you to the bottom cell of contiguous data (i.e. it will stop at the next blank cell). Hope this helps. Pete On Jul 4, 7:02 pm, MS Questionnairess wrote: Thank you Don and JMB The problem with this scenario is that the Ctrl+End or Ctrl+Down Arrow is that it takes my colleague right down all the 2000 blank (but formula-formated) rows at the bottom. There are going to be empty cells within rows. That's why she's constantly moving around the sheet; inputting information as it becomes available. I've never done a macro before... but, JMB, yours works!! Not exactly... but pretty darned happy close enough hurray-ly. My colleague is in awe of me and I'm just humbled. Thank you, thank you, thank you! Weeeeeeeee :-) "JMB" wrote: try playing with Ctrl+Home, Ctrl+End (last cell in usedrange which is not always the last cell with data), Ctrl+Down Arrow, Ctrl+Up Arrow the Ctrl+Arrow keys will take you to the top or bottom (or left or right) of the table - but will stop in the middle if there are gaps. I usually click on a column I know has *no gaps* and use Ctrl+Down Arrow to get to the bottom of the table or I use a column that is *empty* and use Ctrl+Down Arrow to get to the bottom of the spreadsheet (row 65536) then select the column I actually need and use Ctrl+Up Arrow to get to the last cell. you could also use a macro to get to the last cell w/data in it for whatever column you are in - you could create a button on your toolbar and assign the macro to it. Sub LastRow() Dim rngBottom As Range Set rngBottom = Cells(Rows.Count, ActiveCell.Column) If IsEmpty(rngBottom) Then rngBottom.End(xlUp).Activate Else: rngBottom.Activate End If End Sub "MS Questionnairess" wrote: A colleague of mine has spreadsheet of over 4,000 entries. She's constantly autofiltering to fill in missing bits of info but it's driving her crazy that she can't just go from whatever cell she is in the middle of the rows down to the first blank row at the very bottom. The 'Page Up' and 'Page Down' aren't exact and 'End' doesn't seem to do anything. It sounds like such a simple thing to do... but... um... perhaps I'm just not searching for the right vocabulary words to find any hints or tips? So... I come to you(se) all-knowing kindly peoples :-) Help? grazie und merci.- Hide quoted text - - Show quoted text - |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You're welcome - it's something I've been using (in Quattro as well as
Excel) for about 15 years or so. Pete On Jul 4, 7:24 pm, MS Questionnairess wrote: Well... that makes sense :-) And it works as well as the macro. And now my colleague is more in awe of me and I'm feeling kinda dumb I couldn't figure out that part of the instructions myself :-) Thanks for the perfect clarification, Pete_UK. "Pete_UK" wrote: You said earlier that <End doesn't seem to do anything. You need to follow it with an arrow key, and the cursor will move in that direction to the last contiguous cell with data in it. So if you are in a column with data in it and press <End once followed by <down- arrow this will take you to the bottom cell of contiguous data (i.e. it will stop at the next blank cell). Hope this helps. Pete On Jul 4, 7:02 pm, MS Questionnairess wrote: Thank you Don and JMB The problem with this scenario is that the Ctrl+End or Ctrl+Down Arrow is that it takes my colleague right down all the 2000 blank (but formula-formated) rows at the bottom. There are going to be empty cells within rows. That's why she's constantly moving around the sheet; inputting information as it becomes available. I've never done a macro before... but, JMB, yours works!! Not exactly... but pretty darned happy close enough hurray-ly. My colleague is in awe of me and I'm just humbled. Thank you, thank you, thank you! Weeeeeeeee :-) "JMB" wrote: try playing with Ctrl+Home, Ctrl+End (last cell in usedrange which is not always the last cell with data), Ctrl+Down Arrow, Ctrl+Up Arrow the Ctrl+Arrow keys will take you to the top or bottom (or left or right) of the table - but will stop in the middle if there are gaps. I usually click on a column I know has *no gaps* and use Ctrl+Down Arrow to get to the bottom of the table or I use a column that is *empty* and use Ctrl+Down Arrow to get to the bottom of the spreadsheet (row 65536) then select the column I actually need and use Ctrl+Up Arrow to get to the last cell. you could also use a macro to get to the last cell w/data in it for whatever column you are in - you could create a button on your toolbar and assign the macro to it. Sub LastRow() Dim rngBottom As Range Set rngBottom = Cells(Rows.Count, ActiveCell.Column) If IsEmpty(rngBottom) Then rngBottom.End(xlUp).Activate Else: rngBottom.Activate End If End Sub "MS Questionnairess" wrote: A colleague of mine has spreadsheet of over 4,000 entries. She's constantly autofiltering to fill in missing bits of info but it's driving her crazy that she can't just go from whatever cell she is in the middle of the rows down to the first blank row at the very bottom. The 'Page Up' and 'Page Down' aren't exact and 'End' doesn't seem to do anything. It sounds like such a simple thing to do... but... um... perhaps I'm just not searching for the right vocabulary words to find any hints or tips? So... I come to you(se) all-knowing kindly peoples :-) Help? grazie und merci.- Hide quoted text - - Show quoted text -- Hide quoted text - - Show quoted text - |
#8
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
And one more. You can select an entire column, tap F5, click Special,
check blanks and OK. All blanks will be highlighted with the first one active, you can add data to that cell and hit enter to take you to the next blank etc etc. HTH Martin "MS Questionnairess" wrote in message ... Well... that makes sense :-) And it works as well as the macro. And now my colleague is more in awe of me and I'm feeling kinda dumb I couldn't figure out that part of the instructions myself :-) Thanks for the perfect clarification, Pete_UK. "Pete_UK" wrote: You said earlier that <End doesn't seem to do anything. You need to follow it with an arrow key, and the cursor will move in that direction to the last contiguous cell with data in it. So if you are in a column with data in it and press <End once followed by <down- arrow this will take you to the bottom cell of contiguous data (i.e. it will stop at the next blank cell). Hope this helps. Pete On Jul 4, 7:02 pm, MS Questionnairess wrote: Thank you Don and JMB The problem with this scenario is that the Ctrl+End or Ctrl+Down Arrow is that it takes my colleague right down all the 2000 blank (but formula-formated) rows at the bottom. There are going to be empty cells within rows. That's why she's constantly moving around the sheet; inputting information as it becomes available. I've never done a macro before... but, JMB, yours works!! Not exactly... but pretty darned happy close enough hurray-ly. My colleague is in awe of me and I'm just humbled. Thank you, thank you, thank you! Weeeeeeeee :-) "JMB" wrote: try playing with Ctrl+Home, Ctrl+End (last cell in usedrange which is not always the last cell with data), Ctrl+Down Arrow, Ctrl+Up Arrow the Ctrl+Arrow keys will take you to the top or bottom (or left or right) of the table - but will stop in the middle if there are gaps. I usually click on a column I know has *no gaps* and use Ctrl+Down Arrow to get to the bottom of the table or I use a column that is *empty* and use Ctrl+Down Arrow to get to the bottom of the spreadsheet (row 65536) then select the column I actually need and use Ctrl+Up Arrow to get to the last cell. you could also use a macro to get to the last cell w/data in it for whatever column you are in - you could create a button on your toolbar and assign the macro to it. Sub LastRow() Dim rngBottom As Range Set rngBottom = Cells(Rows.Count, ActiveCell.Column) If IsEmpty(rngBottom) Then rngBottom.End(xlUp).Activate Else: rngBottom.Activate End If End Sub "MS Questionnairess" wrote: A colleague of mine has spreadsheet of over 4,000 entries. She's constantly autofiltering to fill in missing bits of info but it's driving her crazy that she can't just go from whatever cell she is in the middle of the rows down to the first blank row at the very bottom. The 'Page Up' and 'Page Down' aren't exact and 'End' doesn't seem to do anything. It sounds like such a simple thing to do... but... um... perhaps I'm just not searching for the right vocabulary words to find any hints or tips? So... I come to you(se) all-knowing kindly peoples :-) Help? grazie und merci.- Hide quoted text - - Show quoted text - |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Summarised list from long list | Excel Discussion (Misc queries) | |||
working with a long list | Excel Discussion (Misc queries) | |||
names in a long list | Excel Worksheet Functions | |||
why won't vlookup work in a long list | Excel Worksheet Functions | |||
Setting up a random list from long list of names ? | Excel Discussion (Misc queries) |