A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Word » Tables
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

entering data



 
 
Thread Tools Display Modes
  #1  
Old July 1st, 2009, 05:20 PM posted to microsoft.public.word.tables
afdmello
external usenet poster
 
Posts: 85
Default entering data

Is there a keyboard shortcut to go to the lower row when entering data in
table
the tab key moves the cursor to the next horizontal cell.

Afd


  #2  
Old July 2nd, 2009, 09:23 AM posted to microsoft.public.word.tables
Doug Robbins - Word MVP
external usenet poster
 
Posts: 8,239
Default entering data

Insert the following macro into your normal.dot (or dotm) template and it
will hijack the use of the tab key in a table
so that it does what you want:

Sub NextCell()
'
' NextCell Macro
' Moves to the next table cell
' Modified by Doug Robbins to move to the next cell in the column before
moving to
'the next column
With Selection.Tables(1)
If Selection.Information(wdEndOfRangeRowNumber) .Rows.Count Then
Selection.MoveDown
ElseIf Selection.Information(wdEndOfRangeColumnNumber) _
..Columns.Count Then
.Cell(1, Selection.Information(wdEndOfRangeColumnNumber) + _
1).Select
Selection.Collapse wdCollapseStart
Else
MsgBox "You have reached the end of the table."
End If
End With

End Sub


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP, originally posted via msnews.microsoft.com
"afdmello" wrote in message
...
Is there a keyboard shortcut to go to the lower row when entering data in
table
the tab key moves the cursor to the next horizontal cell.

Afd


  #3  
Old July 2nd, 2009, 01:30 PM posted to microsoft.public.word.tables
afdmello
external usenet poster
 
Posts: 85
Default entering data

Thank you Robbins for the effort and I truly appreciate your time and help.
Unfortunately, I know nothing about VBA and will have to start learning it.

Afd
"Doug Robbins - Word MVP" wrote in message
...
Insert the following macro into your normal.dot (or dotm) template and it
will hijack the use of the tab key in a table
so that it does what you want:

Sub NextCell()
'
' NextCell Macro
' Moves to the next table cell
' Modified by Doug Robbins to move to the next cell in the column before
moving to
'the next column
With Selection.Tables(1)
If Selection.Information(wdEndOfRangeRowNumber) .Rows.Count Then
Selection.MoveDown
ElseIf Selection.Information(wdEndOfRangeColumnNumber) _
.Columns.Count Then
.Cell(1, Selection.Information(wdEndOfRangeColumnNumber) + _
1).Select
Selection.Collapse wdCollapseStart
Else
MsgBox "You have reached the end of the table."
End If
End With

End Sub


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP, originally posted via msnews.microsoft.com
"afdmello" wrote in message
...
Is there a keyboard shortcut to go to the lower row when entering data in
table
the tab key moves the cursor to the next horizontal cell.

Afd




  #4  
Old July 2nd, 2009, 02:05 PM posted to microsoft.public.word.tables
Graham Mayor
external usenet poster
 
Posts: 18,297
Default entering data

No learning required - see http://www.gmayor.com/installing_macro.htm

--

Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org



afdmello wrote:
Thank you Robbins for the effort and I truly appreciate your time and
help. Unfortunately, I know nothing about VBA and will have to start
learning it.
Afd
"Doug Robbins - Word MVP" wrote in message
...
Insert the following macro into your normal.dot (or dotm) template
and it will hijack the use of the tab key in a table
so that it does what you want:

Sub NextCell()
'
' NextCell Macro
' Moves to the next table cell
' Modified by Doug Robbins to move to the next cell in the column
before moving to
'the next column
With Selection.Tables(1)
If Selection.Information(wdEndOfRangeRowNumber) .Rows.Count
Then Selection.MoveDown
ElseIf Selection.Information(wdEndOfRangeColumnNumber) _
.Columns.Count Then
.Cell(1, Selection.Information(wdEndOfRangeColumnNumber)
+ _ 1).Select
Selection.Collapse wdCollapseStart
Else
MsgBox "You have reached the end of the table."
End If
End With

End Sub


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP, originally posted via msnews.microsoft.com
"afdmello" wrote in message
...
Is there a keyboard shortcut to go to the lower row when entering
data in table
the tab key moves the cursor to the next horizontal cell.

Afd



  #5  
Old July 6th, 2009, 01:38 PM
morkelkey morkelkey is offline
Member
 
First recorded activity by OfficeFrustration: Jul 2009
Posts: 3
Default

I have created a new column in a MS Word 2007 table. I want each row of that column to contain the same text string ("BOOK"). I assume I should be able to use Is there a keyboard shortcut to go to the lower row when entering data in table the tab key moves the cursor to the next horizontal cell. Afd ...
Is there a way to make the defalt for "Resizing tables to fit contents" unchecked. It is under table properties / options.
  #6  
Old July 10th, 2009, 08:11 AM posted to microsoft.public.word.tables
Guy Lydig
external usenet poster
 
Posts: 91
Default entering data

I am sorry if this is too obvious but you do know that you can use the down
arrow, right?

"afdmello" wrote:

Thank you Robbins for the effort and I truly appreciate your time and help.
Unfortunately, I know nothing about VBA and will have to start learning it.

Afd
"Doug Robbins - Word MVP" wrote in message
...
Insert the following macro into your normal.dot (or dotm) template and it
will hijack the use of the tab key in a table
so that it does what you want:

Sub NextCell()
'
' NextCell Macro
' Moves to the next table cell
' Modified by Doug Robbins to move to the next cell in the column before
moving to
'the next column
With Selection.Tables(1)
If Selection.Information(wdEndOfRangeRowNumber) .Rows.Count Then
Selection.MoveDown
ElseIf Selection.Information(wdEndOfRangeColumnNumber) _
.Columns.Count Then
.Cell(1, Selection.Information(wdEndOfRangeColumnNumber) + _
1).Select
Selection.Collapse wdCollapseStart
Else
MsgBox "You have reached the end of the table."
End If
End With

End Sub


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP, originally posted via msnews.microsoft.com
"afdmello" wrote in message
...
Is there a keyboard shortcut to go to the lower row when entering data in
table
the tab key moves the cursor to the next horizontal cell.

Afd





  #7  
Old July 10th, 2009, 09:29 AM posted to microsoft.public.word.tables
Doug Robbins - Word MVP
external usenet poster
 
Posts: 8,239
Default entering data

But when you get to the bottom of the column, the selection will not be
moved to the top of the next column as is what happens with the macro when
the tab key is used to move the selection.

--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP, originally posted via msnews.microsoft.com
"Guy Lydig" wrote in message
...
I am sorry if this is too obvious but you do know that you can use the down
arrow, right?

"afdmello" wrote:

Thank you Robbins for the effort and I truly appreciate your time and
help.
Unfortunately, I know nothing about VBA and will have to start learning
it.

Afd
"Doug Robbins - Word MVP" wrote in message
...
Insert the following macro into your normal.dot (or dotm) template and
it
will hijack the use of the tab key in a table
so that it does what you want:

Sub NextCell()
'
' NextCell Macro
' Moves to the next table cell
' Modified by Doug Robbins to move to the next cell in the column
before
moving to
'the next column
With Selection.Tables(1)
If Selection.Information(wdEndOfRangeRowNumber) .Rows.Count
Then
Selection.MoveDown
ElseIf Selection.Information(wdEndOfRangeColumnNumber) _
.Columns.Count Then
.Cell(1, Selection.Information(wdEndOfRangeColumnNumber) + _
1).Select
Selection.Collapse wdCollapseStart
Else
MsgBox "You have reached the end of the table."
End If
End With

End Sub


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP, originally posted via msnews.microsoft.com
"afdmello" wrote in message
...
Is there a keyboard shortcut to go to the lower row when entering data
in
table
the tab key moves the cursor to the next horizontal cell.

Afd






 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 02:54 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.