Assuming you've correctly instantiated Excel, you need to use its Open
method.
For instance, here's code I use:
If fIsAppRunning("Excel") Then
Set xlCurr = GetObject(, "Excel.Application")
booXL = False
Else
Set xlCurr = CreateObject("Excel.Application")
booXL = True
End If