Hi I m using this piece of code to convert all tables to text, but I want to exclude the first table ( which contains the Heading of the file) and convert the remaining to text, how do I change the code and put counter on tables. Please help.

Dim tbl As Table
For Each tbl In ActiveDocument.Tables
tbl.ConvertToText Separator:=wdSeparateByTabs
Next tbl
Set tbl = Nothing