mysterious-dr-x
Board Regular
- Joined
- Jul 29, 2011
- Messages
- 51
So I have 3 macros, ImportData, RemoveDuplicates & Sort (all of which I feel are rather self explanatory)
I know this method of autorun for just the 1st....
....but how do I do all 3 consecutively?
EDIT: The following seems to work, is this acceptable practice?
I know this method of autorun for just the 1st....
Code:
Private Sub Workbook_Open()
Call ImportData
End Sub
EDIT: The following seems to work, is this acceptable practice?
Code:
Private Sub Workbook_Open()
Call ImportData
Call RemoveDuplicates
Call Sort
End Sub
Last edited: