I am working on MS Word 2010. When I use 'Continue For', it gives error ("Expected: Expression").
For Each Tbl In ActiveDocument.Tables 'Look thru ALL the document tables
'... blah blah blah ...
If .Find.Found = False Then Continue For 'If not found, then go to next table
'... blah blah blah ...
End With 'Quite associating with Tbl.Range object
Next Tbl 'If here, don't have descrip yet; goto next Tbl
I am on Word 2010, VBA 7.0
I get a red error on the 'Continue For'; what possibility could be wrong with this?
I've never used a 'Continue For' before.
(I've got the .Find.Found properly associated; so don't worry about that; I only show the above streamlined so to zero in on the 'Continue For' part)
Bookmarks