Announcements
Attention for Customers without Multi-Factor Authentication or Single Sign-On - OTP Verification rolls out April 2025. Read all about it here.
WCrihfield
in reply to: aurel_e

And sometimes this strategy can work better for when you need to start a new instance of the Excel application, but I do not use this one that much.  Below is a very simple example rule, just for testing, to see if it will work for you, without any errors.

AddReference "Microsoft.Office.Interop.Excel.dll"
Imports Microsoft.Office.Interop
Imports Microsoft.Office.Interop.Excel
Dim oExcel As New Microsoft.Office.Interop.Excel.ApplicationClass
oExcel.Visible = True
oExcel.DisplayAlerts = False
MsgBox("Notice that a 'New' instance of Excel just opened." & _
vbCrLf & "And when you close this message, that instance of Excel will be closed.", _
vbInformation, "iLogic")
oExcel.Quit
oExcel = Nothing

Wesley Crihfield

EESignature

(Not an Autodesk Employee)