Using VBA for Word, how do I loop through all the "Words" in the Active document? I've used this in Access, but don't know the synatx for Word. I'm thinking it should look something like this: Sub Loop() Dim wd as Word for each wd in ActiveDocument 'Do Something Next wd End...