If you have the knowledge to write a macro all you need to do is encase your code in a For....Next loop. For example:
Sub MacroName()
For count = 1 to 185
Put code here
Next Count
End Sub
The will run 185 times. If what you are searching for is the same on each page then this should work for you.
Good luck.
Tony
|