<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: How Can I Create a Table that Updates in LabVIEW</title>
    <link>https://ni.lithium.com/t5/LabVIEW/How-Can-I-Create-a-Table-that-Updates/m-p/380885#M190844</link>
    <description>&lt;DIV&gt;You should have it. It's a file that has shipped with every LabVIEW version for as long as I can remember. Look in Examples\General\Graphs\charts.llb.&lt;/DIV&gt;</description>
    <pubDate>Tue, 20 Jun 2006 13:25:50 GMT</pubDate>
    <dc:creator>Dennis_Knutson</dc:creator>
    <dc:date>2006-06-20T13:25:50Z</dc:date>
    <item>
      <title>How Can I Create a Table that Updates</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-Can-I-Create-a-Table-that-Updates/m-p/141783#M85096</link>
      <description>I have a numerical data cluster that is outputting XY data to a Graph&lt;BR /&gt;that updates using a Chart Buffer.  I also want this data cluster to&lt;BR /&gt;display the XY data on a Table (indicator).  I debundled the cluster&lt;BR /&gt;and converted the X data and the Y data into strings.  I then ran both&lt;BR /&gt;strings to a build array.  Now I can get the data to display on the&lt;BR /&gt;Table if the Table is outside the For Loop I am collecting data on,&lt;BR /&gt;but this doesn't help.  I want the data to appear on the table when it&lt;BR /&gt;is collected (point for point).  When I try to wire the Array to the&lt;BR /&gt;table if it inside the For Loop I get a broken wire saying a Wire&lt;BR /&gt;Dimension Mismatch: "You have two or more array data types wired&lt;BR /&gt;together, but the arrays have different numbers of dimens&lt;BR /&gt;ions. Show&lt;BR /&gt;the Help window to see how many dimensions are required."  I think&lt;BR /&gt;this has something to do with Labview not knowing the size of the&lt;BR /&gt;array since all the data has not been collected yet.  Is there some&lt;BR /&gt;other way to get the Table to update point for point.  I am new with&lt;BR /&gt;Labview, so please don't go over my head with a responce. &lt;BR /&gt;</description>
      <pubDate>Wed, 07 Jul 2004 15:37:05 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-Can-I-Create-a-Table-that-Updates/m-p/141783#M85096</guid>
      <dc:creator>Archais</dc:creator>
      <dc:date>2004-07-07T15:37:05Z</dc:date>
    </item>
    <item>
      <title>Re: How Can I Create a Table that Updates</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-Can-I-Create-a-Table-that-Updates/m-p/141784#M85097</link>
      <description>Here is a really basic example. Because the table is a 2D array and you are doing a point-by-point acquisition, you would first make a 1D array from the string values of the XY data, and then use an append array to the table value that is maintained in a shift register. This is not necessarily the most effecient method but should work unless your for loop iterates a large number of times. &lt;BR /&gt;</description>
      <pubDate>Wed, 07 Jul 2004 16:08:55 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-Can-I-Create-a-Table-that-Updates/m-p/141784#M85097</guid>
      <dc:creator>Dennis_Knutson</dc:creator>
      <dc:date>2004-07-07T16:08:55Z</dc:date>
    </item>
    <item>
      <title>Re: How Can I Create a Table that Updates</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-Can-I-Create-a-Table-that-Updates/m-p/141785#M85098</link>
      <description>It sounds like the array you are building from your XY data is 1D array, and the table needs a 2D array to fill it. It probably works outside the loop because you have auto indexing on the loop tunnel which would create a 2D array from your 1D array automatically.&lt;BR /&gt;&lt;BR /&gt;If you really want to update the table point by point, you would have to insert the newest data into the array that contains the older data, then write to the table. I would hold the current table data in shift register, and insert or replace the new data into the array, then update the table. Be carful here, if you are constantly inserting into an array, it can cause memory management and performance issues.&lt;BR /&gt;&lt;BR /&gt;If none of this makes sense and I've gone over your head, maybe you need to take a st&lt;BR /&gt;ep back and run through the Getting Started with LabVIEW section in the documentation. It really helps if you have a good grasp of the basics. The easiest way to find this document is from the LabVIEW Help menu, select "Search the LabVIEW Bookshelf". A .PDF will open, and one of the links on the first page is, "Getting Started with LabVIEW".&lt;BR /&gt;&lt;BR /&gt;Good Luck&lt;BR /&gt;&lt;BR /&gt;Ed &lt;BR /&gt;</description>
      <pubDate>Wed, 07 Jul 2004 16:18:50 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-Can-I-Create-a-Table-that-Updates/m-p/141785#M85098</guid>
      <dc:creator>EdDickens</dc:creator>
      <dc:date>2004-07-07T16:18:50Z</dc:date>
    </item>
    <item>
      <title>Re: How Can I Create a Table that Updates</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-Can-I-Create-a-Table-that-Updates/m-p/380804#M190797</link>
      <description>&lt;DIV&gt;&lt;FONT face="Comic Sans MS" color="#0000ff"&gt;&lt;/FONT&gt;&lt;/DIV&gt;
&lt;P&gt;&lt;FONT face="Comic Sans MS" color="#0000ff"&gt;hi Mr. Dennis,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Comic Sans MS" color="#0000ff"&gt;&lt;/FONT&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Comic Sans MS" color="#0000ff"&gt;can U pls post the VI XY Chart Buffer... it's missing, so I can't understand Ur code.&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Comic Sans MS" color="#0000ff"&gt;Rgds,&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;FONT face="Comic Sans MS" color="#0000ff"&gt;Partha.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2006 10:22:22 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-Can-I-Create-a-Table-that-Updates/m-p/380804#M190797</guid>
      <dc:creator>parthabe</dc:creator>
      <dc:date>2006-06-20T10:22:22Z</dc:date>
    </item>
    <item>
      <title>Re: How Can I Create a Table that Updates</title>
      <link>https://ni.lithium.com/t5/LabVIEW/How-Can-I-Create-a-Table-that-Updates/m-p/380885#M190844</link>
      <description>&lt;DIV&gt;You should have it. It's a file that has shipped with every LabVIEW version for as long as I can remember. Look in Examples\General\Graphs\charts.llb.&lt;/DIV&gt;</description>
      <pubDate>Tue, 20 Jun 2006 13:25:50 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/How-Can-I-Create-a-Table-that-Updates/m-p/380885#M190844</guid>
      <dc:creator>Dennis_Knutson</dc:creator>
      <dc:date>2006-06-20T13:25:50Z</dc:date>
    </item>
  </channel>
</rss>

