![]() |
#2
|
||||
|
||||
![]()
If the cursor is at the start of a cell with multiple lines then as you have discovered the Down Arrow will move to the next row. The range of shortcuts for Word tables is:
TAB Next cell in a row SHIFT+TAB Previous cell in a row ALT+HOME First cell in a row ALT+END Last cell in a row ALT+PAGE UP First cell in a column ALT+PAGE DOWN Last cell in a column UP ARROW Previous row DOWN ARROW Next row You could always assign a keyboard shortcut to a macro e.g. Code:
Sub MoveDownARow() Dim oRng As Range If Selection.Information(wdWithInTable) Then Set oRng = Selection.Cells(1).Range oRng.End = oRng.End - 1 oRng.Collapse wdCollapseEnd oRng.Select Selection.MoveDown Unit:=wdLine, Count:=1 End If End Sub
__________________
Graham Mayor - MS MVP (Word) (2002-2019) Visit my web site for more programming tips and ready made processes www.gmayor.com |
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
All bullets jump to next page | Dr Wu | Word | 4 | 04-15-2013 06:55 PM |
![]() |
Jennifer Murphy | Word | 8 | 04-02-2013 08:16 AM |
![]() |
JimS-Indy | Project | 1 | 04-13-2012 11:34 AM |
![]() |
eliz.bell | Excel | 1 | 06-11-2010 09:06 PM |
![]() |
jjudson | PowerPoint | 1 | 08-02-2009 12:04 AM |