LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

How do I append data into a table on the front panel?

I am new to Labview and have been having trouble with this one area in particular so far. I am trying to append data that I am reading to a table on the front panel. I can get the data there but it is always just showing what was read last in my for loop. I want to simply display all the data as it is being read. Does anyone have any suggestions? Thanks, Troy
0 Kudos
Message 1 of 2
(2,676 Views)
Means that you are not storing your previously acquire data.
What you can do is to build an array, appending the newly acquired data to the previous ones, and use a shift register to store the data at each iteration of the loop.
This method is not the best, but simple enough to start with. See the attached example.
A better solution is to *insert* the data in the table, as shown in the second example.
Chilly Charly    (aka CC)
Download All
0 Kudos
Message 2 of 2
(2,676 Views)