Thread: Count sheets
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.misc
Gary''s Student Gary''s Student is offline
external usenet poster
 
Posts: 11,058
Default Count sheets

Try this udf:

Function sheetcount() As Long
sheetcount = Sheets.Count
End Function

--
Gary''s Student - gsnu200845


"Dale" wrote:

Hi, is there a way I could display how many sheets I have in a workbook

Thanks