question

Paul M4 avatar image
0 Likes"
Paul M4 asked tannerp commented

Import a csv file

I tried 'importtable()', but I can't get it to work.

/**Custom Code*/ treenode link = node("..>objectfocus+", c); importtable(Table(TB_Log),"U:/pmd/PerformanceAnalysis/Prep Output/Test.csv",1,1);

FlexSim 19.2.4
import datacsv
5 |100000

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

Steven V avatar image
0 Likes"
Steven V answered Steven V edited

Hello Paul,

Looking at the model you try to a create global variable to point to a table. This is a faster way of working but in this case not needed. You could just point to the string name of the table directly Table("HstMachineErrors").

Or if you want the other option to work there are 2 small mistakes:

  1. TB_Log should be a treenode
  2. TB_log should point to the data node of the table thus in this case "MODEL:/Tools/GlobalTables/HstMachineErrors>variables/data"

If you fix this you can use Table(TB_Log) as table handler

Greetings,

Steven

5 |100000

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

tannerp avatar image
0 Likes"
tannerp answered tannerp commented

Hi @Paul M4,

I think the table value needs to be a string. Everything else looks fine to me.

  1. Table(TB_Log) //Not a string
  2. Table("TB_Log") //This should work
· 2
5 |100000

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