VBA environment and Module

lezawang

Well-known Member
Joined
Mar 27, 2016
Messages
1,805
Office Version
  1. 2016
Platform
  1. Windows
Hi
I have excel 2013. When I click on Developer-->VBA, excel will open VBA environment. Under project, I see 2 entries
1) Sheet1 (Sheet1)
2) ThisWorkbook

My understanding, if I want to write a code to run for ONLY sheet1 then I click on sheet1 and write the code. At same token, if I want to write a code that can run on any sheet then I click on ThisWorkbook and write the code. Am I right?

If yes then why I need to click on insert-->Module? How module is different from Sheet1 or ThisWorkbook entries?

Thank you.
 

Excel Facts

Links? Where??
If Excel says you have links but you can't find them, go to Formulas, Name Manager. Look for old links to dead workbooks & delete.
Thank you for the link. It is helpful. I have one question, I did not understand this : "Worksheet event code has to be in either the module for that sheet"

Lets say I have Sheet1, Sheet2, Thisworksheet, in project window. When I insert a Module, would that module will be for Sheet1 or Sheet2? or both?

Thank you.

"
Worksheet event code has to be in either the module for that sheet, or the ThisWorkbook module if it's the same for more than one sheet. Event code for ActiveX controls must be in the sheet module. Other code should generally be in a normal module, though if it relates specifically to one sheet you can certainly make a case for it being in that sheet's code module."

https://www.mrexcel.com/forum/excel-questions/1009836-vba-code-sheets-vs-modules.html
 
Upvote 0
When I insert a Module, would that module will be for Sheet1 or Sheet2? or both?

Neither. Code in a normal module doesn't relate to anything unless specified. If your code refers to Range or Cells, and doesn't specify a sheet, it will relate to whatever sheet is active at the time.
 
Upvote 0
Thank you. Could you please kindly explain what does "the module for that sheet " mean?
 
Upvote 0
Each sheet, and workbook, has a module of its own and that's where any code, e.g. event code, specific to the sheet (or workbook) should go.
 
Upvote 0
and that is called Sheet1 and Thisworkbook right?
 
Upvote 0
Yes, or Sheet2 or whatever the code name for the sheet is.
 
Upvote 0

Forum statistics

Threads
1,214,923
Messages
6,122,289
Members
449,077
Latest member
Rkmenon

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