VBA Select first 4 sheets

Peng_Lai

New Member
Joined
Feb 25, 2018
Messages
9
Hi guys,

Got a question about VBA. How can I select first 4 sheets using VBA? I know I can do ActiveWorkbook.Sheets(1)...but how can I select first 4 sheets but not all of them? Thank you!
 

Excel Facts

Convert text numbers to real numbers
Select a column containing text numbers. Press Alt+D E F to quickly convert text to numbers. Faster than "Convert to Number"
Code:
worksheets(array(1,2,3,4)).select


Thank you VBA Geek! Another one, how can I select first (n-1) sheets? For example, if I have 5 sheets in total. I want to select first 4. If I have 6 sheets in total, I want to select first 5. Can I use something like Sheets.Count?

Thank you!
 
Upvote 0
Another one, how can I select first (n-1) sheets? For example, if I have 5 sheets in total. I want to select first 4. If I have 6 sheets in total, I want to select first 5.
Try ..
Code:
Sub SelectAllButLast()
  Dim i As Long
  
  Sheets(1).Select
  For i = 2 To Sheets.Count - 1
    Sheets(i).Select Replace:=False
  Next i
End Sub
 
Upvote 0
Thank you VBA Geek! Another one, how can I select first (n-1) sheets? For example, if I have 5 sheets in total. I want to select first 4. If I have 6 sheets in total, I want to select first 5. Can I use something like Sheets.Count?

Thank you!

you can do it as Peter suggested, and also like this:
Code:
Worksheets(Evaluate("TRANSPOSE(ROW(1:" & ThisWorkbook.Worksheets.Count - 1 & "))")).Select
 
Upvote 0

Forum statistics

Threads
1,224,823
Messages
6,181,181
Members
453,022
Latest member
Mohamed Magdi Tawfiq Emam

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