LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 860
Default Getting to first blank row from middle of long list?

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 -






 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Summarised list from long list Sunnyskies Excel Discussion (Misc queries) 3 June 5th 07 12:55 PM
working with a long list deblars Excel Discussion (Misc queries) 2 December 20th 06 04:28 AM
names in a long list ferde Excel Worksheet Functions 4 March 13th 06 12:55 AM
why won't vlookup work in a long list pkeegs Excel Worksheet Functions 9 August 2nd 05 02:28 PM
Setting up a random list from long list of names ? yorkshire exile Excel Discussion (Misc queries) 4 January 6th 05 01:44 PM


All times are GMT +1. The time now is 06:54 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"