VBA – How To Activate or Select a Sheet
In this Article
If you are dealing with code that refers to Activesheet many times, but you aren’t sure how to make the sheet you would like active, here’s how.
Activate Sheet
Before your code that refers to the active sheet, you must activate the sheet you would like manipulated. Here are two ways:
By program name:
1 |
sheet3.activate |
By tab name:
1 |
sheets("mytabname").activate |
Select Worksheet
If you would like to select a worksheet instead of activating it. Use .select instead
1 |
Sheets("TabNameGoesHere").Select |
VBA Coding Made Easy
Stop searching for VBA code online. Learn more about AutoMacro – A VBA Code Builder that allows beginners to code procedures from scratch with minimal coding knowledge and with many time-saving features for all users!
Did you find this VBA tutorial useful? Then share it with your friends and colleagues:
Was this helpful? You might like these related Code Examples...