Counting Worksheets inbetween two sheets?

mgao77

New Member
Joined
Sep 25, 2013
Messages
7
Its it possible to count the number of worksheets in between specific sheets?

For example, I have a "start" sheet and "end" sheet and need to count the number of worksheets in between. Is there a macro that does this?

Thanks!
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Does this work for you?

Code:
Dim ShCount as long
ShCount = Worksheets("end").Index - Worksheets("start").Index - 1
 
Upvote 0
Thanks for your help Andrew. But I do apologize as im a new to VBA.

I've input the macro, but saw no result when i ran it. is it possible to see my result on another sheet? say: "check A10"

Thanks!
 
Upvote 0

Forum statistics

Threads
1,216,756
Messages
6,132,535
Members
449,734
Latest member
AlphaPro

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