TablesOfAuthorities
Mostly legal documents are meant to have references which called Table of authorities. In Table of authorities following components can be presented:
- Citations
- Cases
- Statutes
- Other authorities
- Rules
- Treatises
- Regulations
- Constitutional Provisions
- Page Numbers
- Tab Leaders
Insert Table of Authorities
- Make selection in the document where you wish to have Table of Authorities
- Select Reference Tab
- Select Insert Table of Authorities group
- A dialog pops up
- Make necessary selection under Category
- Add Citations if required
- Choose a template if needed
- Say OK

Code example
Public Sub AddTableOfAuth() 'Declare range object Dim oRange As Range Set oRange = Selection.Range 'Declare document object Dim oDocument As Document Set oDocument = ActiveDocument 'Create TOA Dim oToA As TableOfAuthorities Set oToA = oDocument.TablesOfAuthorities.Add(Range:=oRange, Category:=0, Passim:=True, KeepEntryFormatting:=True, EntrySeparator:=", ") 'Set tableader oToA.TabLeader = wdTabLeaderMiddleDot 'Memory cleanup Set oRange = Nothing Set oToA = Nothing Set oDocument = Nothing End Sub
If you find blog useful and informative please do subscribe to get more upcoming posts.