<?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: read cell value from Excel for multiple files in LabVIEW</title>
    <link>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2122828#M688982</link>
    <description>&lt;P&gt;Ravens Fan, thank you for your reply. I think I understand your comment that EXCEL is being closed before all of the files are processed, I can see that when I use the step thru function to run the program.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried simply moving the Invoke Node for closing the application outside the For Loop and I can't get my wiring correct. I tried a few different permuations and couldn't get things to work. I'd really appreciate additional comments as I'm pretty stuck.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Attached is the .vi file (with the broken wiring). I'm using LabView 8.6. Thanks again.&lt;/P&gt;</description>
    <pubDate>Tue, 14 Aug 2012 15:49:21 GMT</pubDate>
    <dc:creator>LMM</dc:creator>
    <dc:date>2012-08-14T15:49:21Z</dc:date>
    <item>
      <title>read cell value from Excel for multiple files</title>
      <link>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2120536#M688534</link>
      <description>&lt;P&gt;I'm trying to write a LabView routine to read a specific cell value from an EXCEL worksheet file. I'd like to&amp;nbsp;plot the value then move onto the next EXCEL file in the folder.&amp;nbsp; In one of the forums I found this LabView VI that works to read a cell value from a single EXCEL file called Read_Value_From_Excel.JPG&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried to modify the program by adding&amp;nbsp;a For Loop and List Folder function as shown in Read_Value_From_Excel_LM2.JPG.&amp;nbsp; This file gives me an error message&amp;nbsp;indicating "Incorrect function in Read_Value_From Excel_LM2".&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would appreciate any help as I've been struggling with this for a few days and haven't been able to find a similar question in the other forums. Thank you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 12 Aug 2012 18:29:59 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2120536#M688534</guid>
      <dc:creator>LMM</dc:creator>
      <dc:date>2012-08-12T18:29:59Z</dc:date>
    </item>
    <item>
      <title>Re: read cell value from Excel for multiple files</title>
      <link>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2120540#M688535</link>
      <description>&lt;P&gt;I see two major problems with your code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In both screenshots, you are closing all of your references as pretty much the same time.&amp;nbsp; There is a race condition as to which of the close functions executes first.&amp;nbsp; You need to close your references in the reverse order of how they were opened.&amp;nbsp; Otherwise you'll wind up closing a higher level reference such as a worksheet before you close a lower level reference such as&amp;nbsp; a range in that worksheet.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The second problem is that you are closing the application reference inside the For Loop, but you need that reference again in the next iteration of the For Loop.&amp;nbsp; The close application reference should be after the For Loop.&lt;/P&gt;</description>
      <pubDate>Sun, 12 Aug 2012 18:40:28 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2120540#M688535</guid>
      <dc:creator>RavensFan</dc:creator>
      <dc:date>2012-08-12T18:40:28Z</dc:date>
    </item>
    <item>
      <title>Re: read cell value from Excel for multiple files</title>
      <link>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2122828#M688982</link>
      <description>&lt;P&gt;Ravens Fan, thank you for your reply. I think I understand your comment that EXCEL is being closed before all of the files are processed, I can see that when I use the step thru function to run the program.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I tried simply moving the Invoke Node for closing the application outside the For Loop and I can't get my wiring correct. I tried a few different permuations and couldn't get things to work. I'd really appreciate additional comments as I'm pretty stuck.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Attached is the .vi file (with the broken wiring). I'm using LabView 8.6. Thanks again.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Aug 2012 15:49:21 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2122828#M688982</guid>
      <dc:creator>LMM</dc:creator>
      <dc:date>2012-08-14T15:49:21Z</dc:date>
    </item>
    <item>
      <title>Re: read cell value from Excel for multiple files</title>
      <link>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2122926#M689003</link>
      <description>&lt;P&gt;Right click and select 'Disable Indexing' on the top two exit terminals and the broken arrow goes away.&amp;nbsp; You only need to close 1 Application reference not an array&amp;nbsp;and to do this you only need 1 error cluster not and array.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ken&lt;/P&gt;</description>
      <pubDate>Tue, 14 Aug 2012 16:29:51 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2122926#M689003</guid>
      <dc:creator>Ken_Naylor</dc:creator>
      <dc:date>2012-08-14T16:29:51Z</dc:date>
    </item>
    <item>
      <title>Re: read cell value from Excel for multiple files</title>
      <link>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2123148#M689066</link>
      <description>&lt;P&gt;Ken's answer is correct about how to fix your broken wire issue.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;But you still haven't fixed the problem with trying to close all the references at the same time.&amp;nbsp; Please look in the example finder for Excel examples so you can see the proper way to do it.&amp;nbsp; You should&amp;nbsp; be using the error wire to define the order of execution of all those close reference functions rather than having them all wired in parallel by splitting the error wire.&lt;/P&gt;</description>
      <pubDate>Tue, 14 Aug 2012 19:32:34 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2123148#M689066</guid>
      <dc:creator>RavensFan</dc:creator>
      <dc:date>2012-08-14T19:32:34Z</dc:date>
    </item>
    <item>
      <title>Re: read cell value from Excel for multiple files</title>
      <link>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2123614#M689156</link>
      <description>&lt;P&gt;Raven's Fan and Ken, thank you very much for your help. I'm still having trouble with the "close reference" functions.&amp;nbsp; From what I've read I think I should be closing the reference functions in the opposite order the nodes were open.&amp;nbsp; Am I on the right track to move some of the close references into the loop and leave the close reference for the application outside? Also, I removed the wiring for the error inputs and outputs so I can focus on getting the close references correctly wired.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you again.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Aug 2012 06:18:25 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2123614#M689156</guid>
      <dc:creator>LMM</dc:creator>
      <dc:date>2012-08-15T06:18:25Z</dc:date>
    </item>
    <item>
      <title>Re: read cell value from Excel for multiple files</title>
      <link>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2123644#M689163</link>
      <description>&lt;P&gt;Yes you need to close the references in the reverse order and indeed moving them inside the loop will help but you still need to determine the order in which these references close by connecting the error cluster on each close reference with a single error cluster wire not multiple branches&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ken&lt;/P&gt;</description>
      <pubDate>Wed, 15 Aug 2012 07:11:03 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2123644#M689163</guid>
      <dc:creator>Ken_Naylor</dc:creator>
      <dc:date>2012-08-15T07:11:03Z</dc:date>
    </item>
    <item>
      <title>Re: read cell value from Excel for multiple files</title>
      <link>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2123648#M689164</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would say to use error wire to grant the right sequence order of closing the references.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In your last vi, the reference can be closed even before getting the data out of the file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Br,&lt;/P&gt;
&lt;P&gt;Peter&lt;/P&gt;</description>
      <pubDate>Wed, 15 Aug 2012 07:14:43 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2123648#M689164</guid>
      <dc:creator>GPeter</dc:creator>
      <dc:date>2012-08-15T07:14:43Z</dc:date>
    </item>
    <item>
      <title>Re: read cell value from Excel for multiple files</title>
      <link>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2124016#M689261</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://ni.lithium.com/t5/user/viewprofilepage/user-id/234864"&gt;@GPeter&lt;/a&gt; wrote:&lt;BR /&gt;
&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I would say to use error wire to grant the right sequence order of closing the references.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In your last vi, the reference can be closed even before getting the data out of the file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Br,&lt;/P&gt;
&lt;P&gt;Peter&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;That is exactly correct.&amp;nbsp; I don't understand why the OP didn't understand that when I said that in my previous messages.&amp;nbsp; Instead he decided to just ignore error handling altogether.&amp;nbsp; Sometimes I wonder what people are dreaming about when they read a message and come to a completely different conclusion about what they should be doing.&lt;img id="smileyfrustrated" class="emoticon emoticon-smileyfrustrated" src="https://ni.lithium.com/i/smilies/16x16_smiley-frustrated.gif" alt="Smiley Frustrated" title="Smiley Frustrated" /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;People, when you are told to&amp;nbsp;do something, please give us the courtesy of actually trying it out.&amp;nbsp; Ignoring suggestions doesn't help you solve your problems and just shows you don't value our time we put into helping you solve the problem.&amp;nbsp; If you are going to waste my time, what motivation do I have to continue helping you?&lt;/P&gt;</description>
      <pubDate>Wed, 15 Aug 2012 14:51:37 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2124016#M689261</guid>
      <dc:creator>RavensFan</dc:creator>
      <dc:date>2012-08-15T14:51:37Z</dc:date>
    </item>
    <item>
      <title>Re: read cell value from Excel for multiple files</title>
      <link>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2124068#M689273</link>
      <description>&lt;P&gt;Thank you very much for your responses.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ravens Fan, I really apologize. I honestly wasn't trying to modify away from your suggestions. The problem is that I'm not fully understanding what all the functions are doing and so I wound up going in the wrong direction. I'm trying to use various resources off the Web to learn this but it's been slow going. I'll give the .vi another try based on the suggestions. Thank you again for all your patience.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Aug 2012 15:05:16 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2124068#M689273</guid>
      <dc:creator>LMM</dc:creator>
      <dc:date>2012-08-15T15:05:16Z</dc:date>
    </item>
    <item>
      <title>Re: read cell value from Excel for multiple files</title>
      <link>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2126400#M689763</link>
      <description>&lt;P&gt;Thank you for everyone's help and comments.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I reworked the error wires for the "close reference" functions.&amp;nbsp;The program output still isn't correct. By running in highlight execution mode I can see that the correct file is going into the Invoke Node "Workbooks/open".&amp;nbsp; &amp;nbsp;But out of that node there's an error that reads "ERR -2146827284". I can't find information on this error code.&amp;nbsp; I would really appreciate additional help. Thank you again.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Aug 2012 06:31:58 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2126400#M689763</guid>
      <dc:creator>LMM</dc:creator>
      <dc:date>2012-08-17T06:31:58Z</dc:date>
    </item>
    <item>
      <title>Re: read cell value from Excel for multiple files</title>
      <link>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2126438#M689772</link>
      <description>&lt;P&gt;That error covers a number of error in the Excel Application interface.&amp;nbsp; In this case I think it is a 'File Not Found' Error.&amp;nbsp; The Filename string input to the 'Workbooks/Open invoke node must include the path to the files.&amp;nbsp; Add a Build path and path to string just before the input to Filename&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ken&lt;/P&gt;</description>
      <pubDate>Fri, 17 Aug 2012 07:14:03 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2126438#M689772</guid>
      <dc:creator>Ken_Naylor</dc:creator>
      <dc:date>2012-08-17T07:14:03Z</dc:date>
    </item>
    <item>
      <title>Re: read cell value from Excel for multiple files</title>
      <link>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2126440#M689773</link>
      <description>&lt;P&gt;1.The vi expects the file path..you have wired just the file name.&lt;/P&gt;
&lt;P&gt;2.As previously mentioned you have closed the workbook refnum early before coming to second iteration.&lt;/P&gt;
&lt;P&gt;3.I dont see any use of while loop there.&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Attached the modified vi&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Aug 2012 07:15:22 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2126440#M689773</guid>
      <dc:creator>Frabto</dc:creator>
      <dc:date>2012-08-17T07:15:22Z</dc:date>
    </item>
    <item>
      <title>Re: read cell value from Excel for multiple files</title>
      <link>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2127276#M689941</link>
      <description>&lt;P&gt;Nijams, thank you for your message.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am unable to open the file you posted. I'm usng LabView 8.6 and I'm getting the error that your .vi is a newer version 9.0.&amp;nbsp; Is there a way that the file can be downconverted so I am able to read it? Thank you again.&lt;/P&gt;</description>
      <pubDate>Fri, 17 Aug 2012 16:52:17 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2127276#M689941</guid>
      <dc:creator>LMM</dc:creator>
      <dc:date>2012-08-17T16:52:17Z</dc:date>
    </item>
    <item>
      <title>Re: read cell value from Excel for multiple files</title>
      <link>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2127794#M690046</link>
      <description>&lt;P&gt;I was able to kluge together this program that seems to be working ok. I think it will work for my purposes. Thanks a lot for all the help.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Nijams if it might be possible to convert the program you posted on 8-17 from LabView 9.0 to 8.6 I'd greatly appreciate it so I might access it and study your solution.&lt;/P&gt;</description>
      <pubDate>Sun, 19 Aug 2012 00:21:16 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2127794#M690046</guid>
      <dc:creator>LMM</dc:creator>
      <dc:date>2012-08-19T00:21:16Z</dc:date>
    </item>
    <item>
      <title>Re: read cell value from Excel for multiple files</title>
      <link>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2128984#M690283</link>
      <description>&lt;P&gt;Hi LMM,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can also try posting to the forum linked below to get a VI converted.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Version Conversion&lt;BR /&gt;&lt;A href="http://forums.ni.com/t5/Version-Conversion/bd-p/VersionConversion" target="_blank"&gt;http://forums.ni.com/t5/Version-Conversion/bd-p/VersionConversion&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tim O&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;H1 class="PageTitle lia-component-common-widget-page-title"&gt;&amp;nbsp;&lt;/H1&gt;</description>
      <pubDate>Mon, 20 Aug 2012 18:05:43 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2128984#M690283</guid>
      <dc:creator>Tim_O1</dc:creator>
      <dc:date>2012-08-20T18:05:43Z</dc:date>
    </item>
    <item>
      <title>Re: read cell value from Excel for multiple files</title>
      <link>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2129098#M690312</link>
      <description>&lt;P&gt;Thank you Tim O. I just posted to the forum you suggested.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Aug 2012 19:20:34 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2129098#M690312</guid>
      <dc:creator>LMM</dc:creator>
      <dc:date>2012-08-20T19:20:34Z</dc:date>
    </item>
    <item>
      <title>Re: read cell value from Excel for multiple files</title>
      <link>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2129512#M690372</link>
      <description>&lt;P&gt;Unfortunately i was not able to down convert.I have attached the snippet&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Aug 2012 05:02:46 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2129512#M690372</guid>
      <dc:creator>Frabto</dc:creator>
      <dc:date>2012-08-21T05:02:46Z</dc:date>
    </item>
    <item>
      <title>Re: read cell value from Excel for multiple files</title>
      <link>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2131096#M690675</link>
      <description>&lt;P&gt;Nijams, thank you for your message. Your VI was converted at this site:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://ni.lithium.com/t5/Version-Conversion/Down-convert-from-LabView-9-0-to-8-6/m-p/2129848" target="_blank"&gt;http://forums.ni.com/t5/Version-Conversion/Down-convert-from-LabView-9-0-to-8-6/m-p/2129848&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Aug 2012 05:16:02 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2131096#M690675</guid>
      <dc:creator>LMM</dc:creator>
      <dc:date>2012-08-22T05:16:02Z</dc:date>
    </item>
    <item>
      <title>Re: read cell value from Excel for multiple files</title>
      <link>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2264190#M716990</link>
      <description>&lt;P&gt;hi is it possible to read the excel next ,next.....cell values automatically&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;thanks in Advance&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 23 Dec 2012 10:16:14 GMT</pubDate>
      <guid>https://ni.lithium.com/t5/LabVIEW/read-cell-value-from-Excel-for-multiple-files/m-p/2264190#M716990</guid>
      <dc:creator>ellappan.perumal@gmail.com</dc:creator>
      <dc:date>2012-12-23T10:16:14Z</dc:date>
    </item>
  </channel>
</rss>

