View Single Post
 
Old 12-09-2018, 10:13 PM
ganesang ganesang is offline Windows XP Office 2016
Competent Performer
 
Join Date: Jul 2018
Posts: 170
ganesang is on a distinguished road
Default

Quote:
Originally Posted by Guessed View Post
What is the point of running it more than once on the same file?

You can create another macro to run a macro multiple times.
Code:
Sub DeJaVu()
  Dim i as integer
  For i = 1 to 10
    MyMacroName
  Next i
End Sub
Hi Guess

Thanks for the reply. Please see my response to why i have run this macro multiple times.
Reply With Quote