number of worksheets

  • Thread starter Thread starter booshi
  • Start date Start date
Hi
AFAIK you'll need a UDF for this. e.g. try something like the following
Public Function count_sheets() As Integer
Application.Volatile
count_sheets = Sheets.Count
End Function

and enter =count_sheets() in one of your cells
 
Back
Top