record a macro that changes the font if you don't know the code
to make the change you require, then create a macro that wraps
the recorded code in a for-loop
Sub tablefontchange()
Dim aTable As Table
For Each aTable In ActiveDocument.Tables
aTable.Select
Selection.Font.Name = "Times New Roman"
Next
End Sub
I couldn't be bothered to load word to get the syntax right so I wrote it
from memory the easy way.
The Selection object, although functional, can be fraught with gotchas
Eddie
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.