VBA – Count the Sheets in a Workbook
Application.Sheets.Count – Count Worksheets
If you ever need to count the number of sheets in a workbook, use the VBA command: Application.Sheets.Count
Put this in a module:
Public Sub CountMySheets()
MsgBox Application.Sheets.Count
End Sub