Use VBA to select sheets sequentially in Excel

quocphuoc

New Member
Joined
Feb 12, 2023
Messages
6
Office Version
  1. 2016
Platform
  1. Windows
How code to select two sheets "PL02-13-03" "PL02-14-03", then unselect two sheets "PL02-13-03" "PL02-14-03", aftter select two sheets "PL02-15-03" "PL02-16-03"..... Tks All/
1711189671863.png
1711189584434.png
 

Excel Facts

Which Excel functions can ignore hidden rows?
The SUBTOTAL and AGGREGATE functions ignore hidden rows. AGGREGATE can also exclude error cells and more.
Use such code:

VBA Code:
Sub test()
Dim current_sheet_no As Long
current_sheet_no = ActiveSheet.Index
Do
  Sheets(Array(current_sheet_no, current_sheet_no + 1)).Select

'  do what you need to do with these 2 sheets

  current_sheet_no = current_sheet_no + 2
Loop While current_sheet_no <= Sheets.Count - 1
MsgBox "end of workbook", vbInformation + vbOKOnly
End Sub
 
Upvote 0
Solution

Forum statistics

Threads
1,215,884
Messages
6,127,568
Members
449,385
Latest member
KMGLarson

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