LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

tables

I have 65 different test I have to run on a chip. I would like to fill out a table with the value of each test result and have the table update after each test. what would be the best solution for this. Would it be easier to write each result to file first then read it into the table. I found one way to do it by indexing the array values but the problem that I ran into there is when i run the test the second time it wants to overwrite this data. i need the table to look like the attached excel spreadsheet. the spreadsheet expalins what I want to do more specifically. Thanks in advance for all your help. any suggestions are greatly appreciated



Joe.
"NOTHING IS EVER EASY"
0 Kudos
Message 1 of 2
(2,766 Views)
Hello,
Since you already know the size of the table, it would be best to use 2D array, and index it to the correct size at the begining of your code. Then, after each test, use the Replace Array Subset to replace the appropriate row with the corresponding data.
Using File I/O after each test would add too much overhead.
Please find the attached example. I hope this is what you were looking for.

Zvezdana S.
National Instruments
0 Kudos
Message 2 of 2
(2,766 Views)