MissLady11
New Member
I have "active sheet" VBA code that updates fields within each seperate worksheet.
For each of those worksheets, I've created a button (on each worksheet) that is used to run the code/macro for that particular sheet
I want to create a macro on a master sheet that will go to each individual sheet and run
each named macro or push each button on individual sheets.
macos are as follows:
Sheet27.TQCupdate (assignd to button 1)
Sheet28.EBIupdate (assgned to button 2)
Sheet29.BSSupdate (assgned to button 3) and so on for 13 different macros
I tried to use the following in a module but it does not work from my master tab
Sub RunUpdates()
Application.Run "Sheet27.TQCupdate"
Application.Run "Sheet28.EBIupdate"
Application.Run "Sheet29.BSSupdate"
End Sub
I'm not a coder sorry if this sounds simple, any help wold be appreciated
For each of those worksheets, I've created a button (on each worksheet) that is used to run the code/macro for that particular sheet
I want to create a macro on a master sheet that will go to each individual sheet and run
each named macro or push each button on individual sheets.
macos are as follows:
Sheet27.TQCupdate (assignd to button 1)
Sheet28.EBIupdate (assgned to button 2)
Sheet29.BSSupdate (assgned to button 3) and so on for 13 different macros
I tried to use the following in a module but it does not work from my master tab
Sub RunUpdates()
Application.Run "Sheet27.TQCupdate"
Application.Run "Sheet28.EBIupdate"
Application.Run "Sheet29.BSSupdate"
End Sub
I'm not a coder sorry if this sounds simple, any help wold be appreciated