I have few files (1000+ pages) and occasionally find table or shape not formatted "Inline with Text"... I tried to find a VBA that can help me identify every table or inline shape in my document that are not formatted wdWrapInline. My documents have both page orientations (portrait and landscape).
I tried simple
For sec To doc.Sections.count
Selection.Find.WrapFormat = wdWrapInline
but that's not correct.
Thanks in advance.
I tried simple Selection.Find.WrapFormat = 7
but that's not correct.