Rik,
Do you in fact have Excel resident on your PC? If so, you can try a
little experiment to see if Excel will open when called from the
"analyze timescale . . ." add-in. Try running the following code
snippit. It is a slightly modified version of the code in the add-in. If
Excel is successfully opened after running the snippit, then the problem
has something to do with your Project file or the full add-in is corrupt
and should be reloaded.
Sub Test_Excel_Open()
Dim XL as Object
On Error Resume Next
'set up existing instance of Excel, or if Excel is not running, start it
Set XL = GetObject(, "Excel.application")
If Err <> 0 Then
On Error GoTo 0
Set XL = CreateObject("Excel.Application")
If Err <> 0 Then
MsgBox "Excel app not available on this PC", vbCritical
Set XL = Nothing
On Error GoTo 0
Exit Sub
End If
End If
XL.Visible = True
End Sub
Let us know what happens.
John