Home |
Search |
Today's Posts |
#1
Posted to microsoft.public.word.tables
|
|||
|
|||
Working with a nesting table from inside a nested table - switchingrows.
Imagine you have a table, and nested in each cell is a table. Your
selection is inside one of the nested tables. You want to switch the row containing your selected table with the row above it. What makes this a bit tricky is that (it seems) you can't directly identify the nesting (exterior) cell/row/table. Below FWIW is the code I came up with. It seems to work fine, but I'm hoping/expecting there's a more elegant and robust way to do it. [An additional constraint I was working with was that if your nested table is already in the top row of the nesting table, it should seem to the user as if nothing at all happened; e.g. the cursor should stay in the same spot. Hence the NestingRowIndex function.] Sub MoveRowUp() Dim DeleteMe As Row If NestingRowIndex 1 Then Selection.Expand wdTable Selection.Collapse wdCollapseEnd Selection.MoveEnd wdCharacter Selection.Cells(1).Range.Copy Set DeleteMe = Selection.Rows(1) Selection.Expand wdRow Selection.MoveUp Selection.Rows.Add Selection.Cells(1).Range.Paste DeleteMe.Delete Else MsgBox ("You're at the top already.") End If End Sub Function NestingRowIndex() 'You're in a nested table. What is the row number of cell in which the table is nested? Dim testRange As Range Set testRange = Selection.Range testRange.Expand wdTable testRange.Collapse wdCollapseEnd testRange.MoveEnd wdCharacter NestingRowIndex = testRange.Cells(1).RowIndex End Function PS my approach was based on a suggestion by Cindy Meister, http://social.msdn.microsoft.com/For...8-1a55b5dd7a79 |
Reply |
Thread Tools | |
Display Modes | |
|
|
Similar Threads | ||||
Thread | Forum | |||
Word 2003 "paste as nested table" not nesting | Tables | |||
Enter inside table moves the table | Tables | |||
Creating a table inside an existing table | Tables | |||
Drawing a table inside of a table | New Users | |||
How can I draw a table inside of a table? | New Users |