VBA Script to run multiple scripts at the same time

fahadalambd

New Member
Joined
Sep 16, 2022
Messages
31
Office Version
  1. 2016
Platform
  1. Windows
Good Afternoon everyone,

I hope you all are doing well.

As you see in the attached pic, I have almost 12 VBA Macro scripts in multiple sheet but same workbook. Normally, I run all the scripts individually.

However, Is there any VBA Macro code which will help me to run all the 12 scripts sequentially at once?

Thanks in advance. :)
 

Attachments

  • Capture.PNG
    Capture.PNG
    13.7 KB · Views: 18

Excel Facts

Excel Wisdom
Using a mouse in Excel is the work equivalent of wearing a lanyard when you first get to college
Just create a new macro, and call each one as required. Then you jusr run Callem
VBA Code:
Sub Callem()
Call Sheet1_Data_Set_1
Call Sheet2_Data_Set_2
'etc, etc
end sub
 
Upvote 0
Solution
Just create a new macro, and call each one as required. Then you jusr run Callem
VBA Code:
Sub Callem()
Call Sheet1_Data_Set_1
Call Sheet2_Data_Set_2
'etc, etc
end sub
Thanks for the reply. It is working :)
 
Upvote 0

Forum statistics

Threads
1,215,136
Messages
6,123,249
Members
449,093
Latest member
Vincent Khandagale

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top