Você também pode usar a automação OLE:
Dim Excel as Object, Pasta as Object
Set Excel = CreateObject("Excel.Application")
Set Pasta = Excel.WorkBooks.Open("CaminhoDaSuaPlanilha.xls")
Excel.Visible=True
...
Ao terminar, feche o excel:
Pasta.close
Excel.close
set Pasta=Nothing
Set Excel=Nothing