View Single Post
 
Old 01-20-2013, 06:28 AM
OTPM OTPM is offline Windows 7 32bit Office 2010 32bit
Expert
 
Join Date: Apr 2011
Location: West Midlands
Posts: 981
OTPM is on a distinguished road
Default

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
Reply With Quote