smartpat19
Board Regular
- Joined
- Sep 3, 2014
- Messages
- 114
I have built a macro that pulls data into a master sheet.
Can i have this macro sit in one excel file on a network and create a second macro that would be in the data sheets and when clicked would open the network sheet and run the macro on the data sheet?
Benefit being I can update the macro in one sheet without having to update all 80 worksheets.
Currently this is how I set my tabs. would i need to change this?
Additionally, what would the macro in the data sheets look like?
Really just need a starting point and I can figure out the details
Thank you,
Patrick
Can i have this macro sit in one excel file on a network and create a second macro that would be in the data sheets and when clicked would open the network sheet and run the macro on the data sheet?
Benefit being I can update the macro in one sheet without having to update all 80 worksheets.
Currently this is how I set my tabs. would i need to change this?
Additionally, what would the macro in the data sheets look like?
Really just need a starting point and I can figure out the details
Code:
Set wks = Worksheets("Cash Flow Template")Set income = Worksheets("Monthly NOI")
Set Summary = Worksheets("Proforma Summary")
Thank you,
Patrick