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

There is likely no need to import/ embed the excel sheet. Based on your previous method to import the iproperties from the excel file using go excel. As long as the excel file is located in the same folder as the inventor document and you have defined the name of the file then go excel function will find the excel file. 

 

Filename only

GoExcel.Open("dwg-param.xlsx", "Sheet2")

Another method is to use the Path function of the document your running the rule on to give the directory The file is stored in.

GoExcel.Open(ThisDoc.Path & "\dwg-param.xlsx", "Sheet2")

 

If this solved a problem, please click (accept) as solution.‌‌‌‌
Or if this helped you, please, click (like)‌‌
Regards
Alan