Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi all,
I bow to the wisdom of this group. I have been able to find information on how to list the xls files and all associated sheet tab names, but I cannot figure out how to exclude the hidden sheet tabs. I have created a macro for one of my bosses so he can print all sheets, but if fails due to the hidden sheets. here is the code for identifying the file names and sheets: Sub BooksandSheets() ScreenUpdating = False Set wb = Workbooks.Add Debug.Print wb.Name Cells(1, 1) = "Workbook" Cells(1, 2) = "SheetName" intcounter = 2 Set fs = CreateObject("Scripting.FileSystemObject") Set FSDir = fs.GetFolder("O:\Accounting\FLTACCTG\Account\Priva te \Reports\2007\Current Month") ' Change Path Set folder = FSDir.Files For Each file In folder Workbooks.Open Filename:=file.Name, UpdateLinks:=False, ReadOnly:=True For Each ws In Worksheets Workbooks(wb.Name).Worksheets(1).Cells(intcounter, 1) = file.Name Workbooks(wb.Name).Worksheets(1).Cells(intcounter, 2) = ws.Name For Each SH In Worksheets If (SH.Visible < True) Then Workbooks(wb.Name).Worksheets(1).Cells(intcounter, 3) = "HIDDEN" Else Workbooks(wb.Name).Worksheets(1).Cells(intcounter, 3) = "NOT HIDDEN" End If Next SH intcounter = intcounter + 1 Next ws Workbooks(file.Name).Close False Next MsgBox "complete" End Sub I tried to differentiate between hidden and not hidden files, but it ran into an issue when one sheet is hidden, it considers them ALL hidden. Any help is appreciated. Thank you, Ray |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Subtoal excluding hidden columns | Excel Worksheet Functions | |||
Countif excluding hidden rows | Excel Worksheet Functions | |||
Excluding formulas in hidden cells? | Excel Worksheet Functions | |||
Sum of a column excluding hidden rows | Excel Worksheet Functions | |||
listing sheet tabs | Excel Programming |