question

Thomas JR avatar image
0 Likes"
Thomas JR asked Thomas JR commented

Change target .xlsx file in Excel interface through custom code

Is it possible to change the target file in “Excel Workbook” through custom code?

I need to change it for all of my defined exports.

FlexSim 21.0.0
flexsim 21.0.0excel interface
· 1
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.

1 Answer

Lars Jacobsen avatar image
1 Like"
Lars Jacobsen answered Thomas JR commented

You can use

getvarnode(Model.find("Tools/ExcelAuto"), "exporttable").as(Table)[1][1]

to change the export target .xlsx file for the first export. Increment the table row for each export file.


I.e.

getvarnode(Model.find("Tools/ExcelAuto"), "exporttable").as(Table)[1][1] = "C:\\MyNewFileLocation\\File.xlsx";

Note that you need to use \\ in the file path, as a single \ will be deleted by the parser.

· 1
5 |100000

Up to 12 attachments (including images) can be used with a maximum of 23.8 MiB each and 47.7 MiB total.