Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.word.tables
|
|||
|
|||
![]()
A few years back somebody asked how one would find out the "index" of
a nested table. By this they meant that if you a bunch of tables nested inside another table (all at the same nesting level), how do you find out whether your currently selected table is the first, the second, the third, or... It seems that they didn't get the answer they needed and the matter was dropped. As it happens I met this same problem today. Here's a solution: Function TableNumber() Dim TempRange As Range Dim TableIndex As Integer Dim aTable As Table If Selection.Information(wdWithInTable) And Selection.Tables(1).NestingLevel 1 Then Let Selection.Tables(1).ID = "Fred" Set TempRange = Selection.Range Do While Selection.Tables(1).NestingLevel = TempRange.Tables(1).NestingLevel Selection.MoveDown Loop Let TableIndex = 0 For Each aTable In Selection.Cells(1).Tables TableIndex = TableIndex + 1 If aTable.ID = "Fred" Then TableNumber = TableIndex Exit For End If Next TempRange.Select Let Selection.Tables(1).ID = "" MsgBox TableNumber End If End Function |
Thread Tools | |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Do not want to display "Table IV." in Index of Tables/Figures | Microsoft Word Help | |||
Styles "cross" or "bridge" para returns | Formatting Long Documents | |||
Setting up an index directory in a Word doc does NOT work / "No index entries found" | Microsoft Word Help | |||
The search "Find Next" with "wildcards" does not function properly | Microsoft Word Help | |||
How to override Words built-in "Draw a table"-function | Tables |