View Single Post
  #4   Report Post  
Posted to microsoft.public.excel.programming
mudraker[_214_] mudraker[_214_] is offline
external usenet poster
 
Posts: 1
Default total no of worksheets in the workbook

To help you identify the sheets try something like this


Sub ddddd()
Dim wS As Worksheet
For Each wS In Worksheets
wS.Visible = xlSheetVisible
Debug.Print wS.Name
Next

End Su

--
Message posted from http://www.ExcelForum.com