I'm trying to use the property loader to read in an Excel file and create a number of local variables. The tables that I maintain in Excel are of the following format:
Range | Setpoint | High Limit | Low Limit |
5 | -4.5 | -4.49395 | -4.50605 |
5 | 0 | 0.0011 | -0.0011 |
5 | 4.5 | 4.50605 | 4.49395 |
250 | -225 | -224.6975 | -225.3025 |
250 | 0 | 0.055 | -0.055 |
250 | 225 | 225.3025 | 224.6975 |
From this table I want to create 4 local variable arrays in TestStand, all 6 elements deep: Range, Setpoint, HighLimit, and LowLimit. Is there an elegant way to do this without having to use all the formatting syntax that would be in a generic export of these locals from TestStand to an Excel file (i.e. using the method of export Excel file, fill in your own values, then import the Excel file)?