Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
After a re-read I must admit that you were clearer in your description than I
was in my interpretation. I agree that the "pick from list" blank cells limitation is not a great feature but have no workaround for it other than a DV dropdown. I would like the "pick from list" option extended to adjacent cells across rows also but maybe next version. Gord On Tue, 6 Mar 2007 09:31:43 -0800, JamPowell wrote: Hi, I apologize if I was not clear. I do want to pick from a drop down list using Alt + Down Arrow. It is just annoying that if a cell is blank within the column the drop down does not retrieve the above info. Thanks. "Gord Dibben" wrote: Alt + Down Arrow opens the "Pick from drop down list" I think you mean CTRL + Down Arrow and yes, it does stop at the first blank cell. How come? Cause that's the way it is. Selecting cells in this manner has nothing in common with Data Validation that I can think of. To overcome the blank cells problem I use this macro to select the last cell in a column. Sub GODOWN() Dim maxrow As Long With ActiveCell.Parent.UsedRange maxrow = .Cells(.Cells.Count).Row + 1 End With ActiveCell.Parent.Cells(maxrow, ActiveCell.Column).End(xlUp).Select End Sub Gord Dibben MS Excel MVP On 28 Feb 2007 14:38:22 -0800, "Techy Wannabe" wrote: How come the AltDown Arrow Shortcut doesn't work when there are blank cells in the column? Is there a way to direct the shortcut to look at the entire column without doing data validation? Thank you so very much. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Why don't my arrow keys work in Excel? | Excel Discussion (Misc queries) | |||
how to keyboard navigate to other cells during editing formula, when arrow keys don't work | Excel Discussion (Misc queries) | |||
my arrow keys don't work. | Excel Discussion (Misc queries) | |||
Automatic coloring of blank cells when sheet work complete | Excel Worksheet Functions | |||
CTRL+Shift+Arrow Doesn't Work | Excel Discussion (Misc queries) |