' It's not difficult but useful. Especially when there are many sheets in a excel file.
Sub GetAllList()
Dim all As Sheets
Set all = Application.ActiveWorkbook.Sheets
countOfSheets = all.
Count ' count of sheet
For i = 1 To countOfSheets
' sheet1 must be added already.
' insert sheet name into row
Application.Sheets.Item("Sheet1").Cells(i, 1) = all.Item(i).Name
Next i
End Sub
댓글 없음:
댓글 쓰기