How can I easily move to the next available cell in a column?

N

Nonie

I'm using Excel 2007. After searching for a particular item number and not
finding it, I want to be able to go to the next available cell in a column
without having to scroll through all my entries. Is there some sort of
shortcut to do this?
 
R

Rick Rothstein \(MVP - VB\)

It sounds like you have the Find dialog box open. If so, empty out the "Find
what" field, select "By Columns" in the "Search" drop down (you might have
to click the "Options>>" button to expose it) and then click the "Find Next"
button.

Rick
 
N

Nonie

Yes, that works. Thanks! Is there any way with less steps? A keyboard
shortcut perhaps?
 
R

Rick Rothstein \(MVP - VB\)

You could put this macro in a Module (Insert/Module from the VBA menu
bar)...

Sub FindEmptyCell()
Columns(ActiveCell.Column).Find(What:="", LookIn:=xlValues, _
LookAt:=xlWhole, SearchOrder:=xlByColumns).Select
End Sub

....assign it a short-cut via the Options button on the Macros dialog box
(Alt+F8, select FindEmptyCells, click the Options button and give it a
short-cut keystroke). Then you would be able to push Ctrl+<keystroke> to
execute the code.

Rick
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top