I have some vba code which I only ever need to run once when an excel workbook opens to extract URL's into an array. I have placed it in the 'ThisWorkbook' object using the event Private Sub Workbook_Open()
The format of the array is
Array(i,0) URL
Array(i,1) Weekday
Array(i,2) Venue
Array(i,3) Time
Is there a way I can store this array in VBA so that the array is accessible by other code run later in a module or Sheet object?
I want to avoid writing the contents to excel if possible and avoid re-running code each time
Thank you,
Os
The format of the array is
Array(i,0) URL
Array(i,1) Weekday
Array(i,2) Venue
Array(i,3) Time
Is there a way I can store this array in VBA so that the array is accessible by other code run later in a module or Sheet object?
I want to avoid writing the contents to excel if possible and avoid re-running code each time
Thank you,
Os