Community
Inventor Forum
Welcome to Autodesk’s Inventor Forums. Share your knowledge, ask questions, and explore popular Inventor topics.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Link text from a spreadsheet to an iProperty?

2 REPLIES 2
SOLVED
Reply
Message 1 of 3
SveinE
357 Views, 2 Replies

Link text from a spreadsheet to an iProperty?

I can link numeric values from a spreadsheet to parameters.
However, is there a way to link text from a spreadsheet into iProperties (or
anywhere else as text)? I'm trying to administrate general information\metadata from a
spreadsheet.

I do not think this is possibible from within Inventor, but maybe someone have an macro\ilogis\vba code that do this??

 

br

Svein

2 REPLIES 2
Message 2 of 3
Curtis_Waguespack
in reply to: SveinE

Hi SveinE,

 

Here is an example iLogic rule to do this:

 

GoExcel.Open("C:\Temp\MyExcel_WB", "Sheet1")
iProperties.Value("Project", "Part Number") = GoExcel.CellValue("B1")
iProperties.Value("Project", "Description") = GoExcel.CellValue("B2")
iProperties.Value("Project", "Revision Number") = GoExcel.CellValue("B3")
iProperties.Value("Summary", "Comments") = GoExcel.CellValue("B4")

 where the excel data looks like this:

 

Autodesk Inventor iLogic Excel iProperties.png

 

I hope this helps.
Best of luck to you in all of your Inventor pursuits,
Curtis
http://inventortrenches.blogspot.com

Message 3 of 3
SveinE
in reply to: Curtis_Waguespack

Thanks Curtis

 

It looks like this will dp the trick.

I will try and let you know 🙂

 

br

Svein

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk Design & Make Report