Greg,
Thank you, perfect. You have given me the context to succeed.
The whole story is this (I was trying not to overload the original
message with unnecessary detail):
I have a "yearbook" I am compiling for our 20-year HS reunion.
Classmates fill out a survey on line tied to a Google spreadsheet, ie:
kids, job, memories, etc. I decided to play around with a data merge
in Word. I got everything working great except that I wanted to
include each person's yearbook photo alongside their bio. After much
work I finally found the INCLUDEPICTURE field (Using Word v.X for
Mac). But for unknown reasons, you can't adjust the picture format
with this field, otherwise it removes the field and leaves the
picture, not the link. I want the text to wrap around the picture. I
found that by either inserting the picture in a Text Box, I can format
the Text Box to wrap without affecting the picture link. But after the
merge, the Select All and Update Fields skipped over the pictures
inside the Text Boxes. Since I don't want to select each of them
indivisually to update the picture (could get to 100 of those), I
wanted to create a macro the would select the box, update the field,
and keep on loopin'. Which is now accomplished with:
Dim oShp As Shape
For Each oShp In ActiveDocument.Shapes
If oShp.Type = msoTextBox Then
oShp.Select
Selection.Fields.Update
End If
Next
Thanks again,
Tim