This places all tables and fields into an excel file on a single worksheet as a single table.
Public Function TableDef() Dim def As TableDef Dim wb As Object Dim xL As Object Dim lngRow As Long Dim f As Field Set xL = CreateObject("Excel.Application") xL.Visible = True Set wb = xL.workbooks.Add lngRow = 2 For Each def In CurrentDb.TableDefs For Each f In def.Fields With wb.sheets("Sheet1") .Range("A" & lngRow).Value = def.Name .Range("B" & lngRow).Value = f.Name .Range("C" & lngRow).Value = f.Type .Range("D" & lngRow).Value = f.Size .Range("E" & lngRow).Value = f.Required lngRow = lngRow + 1 End With Next Next End Function