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

Square and cube roots
The =SQRT(25) is a square root. For a cube root, use =125^(1/3). For a fourth root, use =625^(1/4).
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,109
Messages
6,128,876
Members
449,476
Latest member
pranjal9

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