View Single Post
 
Old 01-10-2018, 10:08 AM
Logit Logit is offline Windows 10 Office 2007
Expert
 
Join Date: Jan 2017
Posts: 591
Logit is a jewel in the roughLogit is a jewel in the roughLogit is a jewel in the roughLogit is a jewel in the rough
Default

Place your entire macro into a Routine Module (not in ThisWorkbook).

In ThisWorkbook paste this :

Code:
Option Explicit

Private Sub Workbook_Open()
    uploadmaster
End Sub
That will run the macro each time the workbook is opened.
Reply With Quote