This is one way to do it, its not the way you where trying to export.
Dim sql As String
Dim xlx As Object, xl As Object, xlw As Object, wb As Object
'--DB
Dim db As Database, rs As Recordset
Set xlx = CreateObject("Excel.Application")
Set xlw = xlx.workbooks.Open(reportLoc())
Set...