Skip to main content

How to count the number of sheets of a workbook?

Have you ever considered how to count the number of worksheets in a workbook? To count them one by one is a boring job, if there are lots of worksheets. In fact, there is no straight formula to calculate the number of worksheets. But, here, I can introduce you some useful and handy tricks to deal with this problem.

Count the number of sheets in a workbook SHEETS function

Count the number of sheets in a workbook with Define Name command

Count the number of sheets in a workbook with VBA code

Show the number of sheets in a workbook by Navigation pane good idea3

Count the number of sheets in a workbook by creating a list of sheets good idea3


arrow blue right bubbleCount the number of sheets in a workbook SHEETS function

If your Excel version is 2013 or later, you can use the SHEETS function to get the total number of the sheets of current workbook.

Select a blank cell, than type =SHEETS() into it, press Enter key to get the number of sheets.


arrow blue right bubbleCount the number of sheets in a workbook with Define Name command

In Excel, you can apply a formula into the Define Name feature first, and then count the number of the worksheets.

1. Launch your workbook which you want to count the number of worksheets.

2. Click Formula > Define Name, see screenshot:

doc-count-number-of-sheets1

3. And in the New Name dialog box, specify a name in the Name text box, and then enter this formula =GET.WORKBOOK(1)&T(NOW()) to the Refers to text box, see screenshot:

doc-count-number-of-sheets1

4. Then click OK to close this dialog, and return to the worksheet, then type this formula =COUNTA(INDEX(CountSheets,0))(CountSheets in this formula is the name you defined in step 3, you can change it as you need.) into a blank cell, see screenshot:

doc-count-number-of-sheets1

5. And press Enter key, you will get the number of your worksheets in the current workbook.

doc-count-number-of-sheets1


arrow blue right bubbleCount the number of sheets in a workbook with VBA code

If you think the above formulas are somewhat hard to remember, here is a simple VBA code also can help you.

1. Hold down the ALT + F11 keys, and it opens the Microsoft Visual Basic for Applications window.

2. Click Insert > Module, and paste the following code in the Module Window.

VBA code: Count the number of sheets in a workbook

Public Sub CountWorkSheets()
'Update 20140326
MsgBox "The total number sheets of this workbook: " & Application.Sheets.Count
End Sub

3. Then press F5 key to execute this code, and a prompt box will pop out to tell you the total number of the worksheets as following screenshot shown:

doc-count-number-of-sheets1


arrow blue right bubble Show the number of sheets in a workbook with Navigation pane

If you have Kutools for Excel installed, you can obviously view the number of sheets in a workbook with the Navigation pane.

Kutools for Excel, with more than 300 handy functions, makes your jobs more easier. 

After free installing Kutools for Excel, please do as below:

1. Click Kutools > Navigation to enable the Navigation pane in left of the worksheet. See screenshot:
doc navigation 1

2. Then click Workbook & Sheets tab, and then you can view the total number of sheets in the active workbook is shown in the bottom of the pane, also you can view the number of visible and hidden sheets of the workbook. See screenshot:
doc navigation 2

With Navigation pane, you can toogle between sheets, display all column headers, range names, and add auto texts and so on. Click here to know more details.

arrow blue right bubble Navigation  pane --  List and Count All Sheets


arrow blue right bubble Count the number of sheets in a workbook by creating a list of sheets

If you think of above methods are not convenient, I can introduce a round-way for you.

If you have installed Kutools for Excel, you can create a name list of all worksheets, then select them to count in the Status bar.

After free installing Kutools for Excel, please do as below:

1. Enable the workbook you want to count its worksheets, and click Kutools Plus > Worksheet > Create List of Sheet Names. See screenshot:
doc navigation 1

2. Then in the popping dialog, check Contains a list of hyperlinks option, and for selecting sheet names conviniently, you can display the sheet index in 3 or 4 columns. See screenshot:
doc count sheets 2

3. Click Ok, then a worksheet is created with all sheets’ names before all sheets, and you just need to select these sheet names, and view the counting result at the Status bar.
doc kutools create list of sheet names 3

Actually, these sheet names are linkable, you can click one sheet name, and then quickly link to the relative sheet. And with Create List of Sheet Names, you can create linkable buttons of sheet names by check Contains buttons and macros option . Click here to know more about Create List of Sheet Names.

arrow blue right bubble Create list of Sheet Names



Kutools for Excel: 300 + functions you must have in Excel, 30-day free trial from here

goodNavigation pane -- Find and Replace

Kutools for Excel's advanced Find and Replace function, can help you find and
replace a value across multiple sheets and workbooks.
doc find and replace

Best Office Productivity Tools

🤖 Kutools AI Aide: Revolutionize data analysis based on: Intelligent Execution   |  Generate Code  |  Create Custom Formulas  |  Analyze Data and Generate Charts  |  Invoke Kutools Functions
Popular Features: Find, Highlight or Identify Duplicates   |  Delete Blank Rows   |  Combine Columns or Cells without Losing Data   |   Round without Formula ...
Super Lookup: Multiple Criteria VLookup    Multiple Value VLookup  |   VLookup Across Multiple Sheets   |   Fuzzy Lookup ....
Advanced Drop-down List: Quickly Create Drop Down List   |  Dependent Drop Down List   |  Multi-select Drop Down List ....
Column Manager: Add a Specific Number of Columns  |  Move Columns  |  Toggle Visibility Status of Hidden Columns  |  Compare Ranges & Columns ...
Featured Features: Grid Focus   |  Design View   |   Big Formula Bar    Workbook & Sheet Manager   |  Resource Library (Auto Text)   |  Date Picker   |  Combine Worksheets   |  Encrypt/Decrypt Cells    Send Emails by List   |  Super Filter   |   Special Filter (filter bold/italic/strikethrough...) ...
Top 15 Toolsets12 Text Tools (Add Text, Remove Characters, ...)   |   50+ Chart Types (Gantt Chart, ...)   |   40+ Practical Formulas (Calculate age based on birthday, ...)   |   19 Insertion Tools (Insert QR Code, Insert Picture from Path, ...)   |   12 Conversion Tools (Numbers to Words, Currency Conversion, ...)   |   7 Merge & Split Tools (Advanced Combine Rows, Split Cells, ...)   |   ... and more

Supercharge Your Excel Skills with Kutools for Excel, and Experience Efficiency Like Never Before. Kutools for Excel Offers Over 300 Advanced Features to Boost Productivity and Save Time.  Click Here to Get The Feature You Need The Most...

Description


Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier

  • Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
  • Open and create multiple documents in new tabs of the same window, rather than in new windows.
  • Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
Comments (16)
Rated 5 out of 5 · 1 ratings
This comment was minimized by the moderator on the site
Thanks!
=Sheets() worked just fine!
Before I thought I must use VBA.
Saved a lot of trouble!
Rated 5 out of 5
This comment was minimized by the moderator on the site
Save the entire workbook in single pdf then u can find easily count the total no of pages.
This comment was minimized by the moderator on the site
I upgraded to Office 365 and now=COUNTA(INDEX(CountSheets,0)) always returns 1. Is there a fix for Excel 365 to get this to work?Thanks,
Jim...
This comment was minimized by the moderator on the site
=SHEETS() in Excel 365 returns 0.
=SHEETS(reference) - so what goes in "reference"?
This comment was minimized by the moderator on the site
Hi, gerland, in my office 365, the defined name method work as well. You can try the SHEETS function, I have updated it as the first one method in this tutorial.
This comment was minimized by the moderator on the site
=Sheets()  gives the answer. 
This comment was minimized by the moderator on the site
=sheets() works great
This comment was minimized by the moderator on the site
It Works only 2010 & Higher Version of Excel. Not Working In Excel 2007
This comment was minimized by the moderator on the site
Tried it on my 2007 version.
=COUNTA(countsheets)
works for me.
This comment was minimized by the moderator on the site
I like it. Thanks too much
This comment was minimized by the moderator on the site
Thank you so much for posting these directions!! I have a workbook with over 700 sheets and never knew there was a way for excel to count them for me. I used the first method and it worked absolutely perfectly!!
This comment was minimized by the moderator on the site
Great! Saved so much of my time!!
This comment was minimized by the moderator on the site
Hi, Thanks! This worked for me great in excel 2013 to count the number of sheets. Crazy that a formula is required to do this.
This comment was minimized by the moderator on the site
Sorry Freddy. Your first method using Formula > Define Name doesn't work. You got a typo somewhere or something
This comment was minimized by the moderator on the site
[quote]Sorry Freddy. Your first method using Formula > Define Name doesn't work. You got a typo somewhere or somethingBy smith[/quote] yes, instead of =COUNTA(INDEX(CountSheets,0)) You should write =COUNTA(INDEX(CountSheets;0))
There are no comments posted here yet
Load More
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations