R
Ronnie
Is it possible to have a list on the activeworkbook of all
sheets on a specific workbook?
sheets on a specific workbook?
...This is how you would do that
i = 1
For Each sh In Workbooks("Addins.Names v2.xls").Worksheets
Cells(i, 1).Value = sh.Name
i = i + 1
Next sh
the lack of i=1 may have been your original problem.
Harlan Grove said:For i = 1 To Workbooks("Addins.Names v2.xls").Worksheets.Count
Cells(i, 1).Value = sh.Name
Next i