How would I import text from a certain cell in excel and then put that in a certain text box in auto

  • Thread starter Thread starter Todd.McKeehan
  • Start date Start date
T

Todd.McKeehan

How would I import text from a certain cell in excel and then put that
in a certain text box in autocad?
Thanks,
Todd
 
How would I import text from a certain cell in excel and then put that
in a certain text box in autocad?
Thanks,
Todd

i only know how to do this thorough VBA, but assuming X represents the
Text object you wish to put the information into it would be something
like this

X.text = excel.Workbooks("Name of workbook").Worksheets("Name of
worksheet").range("cell address")
 
Back
Top