Dim XL As Excel.Application
Dim WB As Excel.Workbook
Dim WS As Excel.Worksheet
FileName = "C:\Blah.xls"
Set XL = CreateObject("Excel.Application")
XL.Application.Workbooks.Open FileName, , True
For Each WS In XL.Worksheets
'WS.Name is the name of the worksheet
Next