Just to let you know that I got it working. In case you are interested I used this code to loop through the worksheets
'add loop to move through worksheets
Dim xlApp As Excel.Application
Dim xlBook As Excel.Workbook
Dim xlSheet As Excel.Worksheet
Dim xlDay As String
Dim i As Integer
Set xlApp = CreateObject("Excel.Application"

Set xlBook = xlApp.Workbooks.Open(strExcel, , , , "Skiing9"

Set xlSheet = xlBook.ActiveSheet
For i = 1 To xlBook.Worksheets.Count
xlBook.Worksheets(i).Select
xlDay = Worksheets(i).Name
Dim tst As String
Set xlSheet = xlBook.Worksheets(i)
DoCmd.TransferSpreadsheet acImport, , strSaveAs & xlDay, strExcel, , xlDay & "!"
Next i
Set xlApp = Nothing
Set xlBook = Nothing
Set xlSheet = Nothing