How to search through an excel spreadsheet for a number based on restrictions that you input as a user and print them out?

Hi there guys
I'm trying to write a labview program and i'm new to the program. I need the program done asap. First the user inputs the row number and then based on the row number it opens and reads an excel spreadsheet file which is just a table and it outputs the numbers corresponding to the column I ask for. How do I go about doing that? I saved the file as a .lvm so Labview could read it. Its a project for school and I have no idea how to start it. Any help would be greatly appreciated.
Thanks guys a lot 

Ummm... what file did you save as .lvm, and what does this have to do with an Excel file? To read/write Excel files you need to use ActiveX. There are a couple of shipping examples on how to do this in LabVIEW. Plus, this has been asked like a zillion times, so there's tons of examples in this forum if you just do a search. Plus, there's an Excel thread that has lots more examples.

Similar Messages

  • How do you get a list of your contacts nick names and their phone numbers on line and print them out?

    How do you get a list of your contacts nick names and their phone numbers on line and print them out?  I've been trying to figure out how to get the list to print out but I can't even find a complete list to view on Verizon's web site.  Does anyone know how to do this?

    Log into your online account. In the, 'I want to', box type, Manage Contacts.
    Place your cursor over any contact, a pop screen will appear with the option to print your contacts

  • I want to make address labels and print them out. Does anybody know of a word processing program for Mac that would do this?

    I want to make address labels and print them out. Does anybody know of a word processing program for Mac to accomplish this?

    Have you looked at the previous discussions listed on the right side of this page under the heading "More Like This"?

  • How do I take an excel spreadsheet for my pc and work on it on my ipad2 in numbers?

    How do i take an eccel spreadsheet from my pc and work on it on my ipad2

    You can use a 3rd party App like Quickoffice to Add it to your iPad using File Sharing? The App can open, edit and safe the .xls file to iPad.
    http://i1224.photobucket.com/albums/ee374/Diavonex/fb272a97.jpg

  • Deleted the app in the dock that compiles all your open files and fans them out as icons. What is it and how do I get it back?

    When I bought my macbook pro, I deleted the app in the dock that complies all your open files together. When you click on the app it fans all the icons out. What is that app called and how do I find it again/get it back??
    Thanks!

    okay... got that...but before I deleted it, it would "fan" all my open web pages, or open PDF files. So they were in a little folder as opposed to lined up beside my trash bin?
    make any sense?

  • How do you copy a text message and print it out?

    Hi i'm trying to print out so text messages from 2 people ,how do i do this?

    Copy/Paste to notes; then print, Copy/Paste to email; send to yourself; then print, or use third-party software to extract from your phone, then print:
    http://www.wideanglesoftware.com/touchcopy/index.php

  • I am wanting to transfer sms messages to pc and print them. Can anyone advise me how to do this. i have iphone 3.

    Can anyone advise me how to transfer my sms messages onto my pc and print them out? Do i need to purchase software for this and are there any recommended? Thanks.

    You can take screen shots on your phone & email the pics to yourself, but the easiest way is to get this software, import them to your computer, then print them:
    http://www.wideanglesoftware.com/touchcopy/index.php

  • How can I get an excel spreadsheet onto the iPad and make changes to it?  I need this for a meeting this afternoon.

    How can I get an excel spreadsheet onto the iPad and make changes to it during my meeting this afternoon?

    I just bought splashtop, you have to have your home computer online,and download the pc version.  I have used it ot watch movies and to "go to work" on my ipad.  It controls the desktop through the ipad.  Whiteboard by splashtop does that and more and is on sale.  The education director at the hospital I work at is using that one.
    Splashtop 4.99 remote desktop(or laptop) control. Whiteboard 9.99 is remote control and more 9.99
    Julie

  • How to loop through Multiple Excel sheets and load them into a SQL Table?

    Hi ,
    I am having 1 excel sheet with 3 worksheet.
    I have configured using For each loop container and ADO.net rowset enumerator.
    Every thing is fine, but after running my package I am getting below error
    [Excel Source [1]] Error: SSIS Error Code DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAGER.  The AcquireConnection method call to the connection manager "Excel Connection Manager" failed with error code 0xC0202009.  There may
    be error messages posted before this with more information on why the AcquireConnection method call failed.
    Warning: SSIS Warning Code DTS_W_MAXIMUMERRORCOUNTREACHED.  The Execution method succeeded, but the number of errors raised (5) reached the maximum allowed (1); resulting in failure. This occurs when the number of errors reaches the number specified
    in MaximumErrorCount. Change the MaximumErrorCount or fix the errors.
    [Connection manager "Excel Connection Manager"] Error: SSIS Error Code DTS_E_OLEDBERROR.  An OLE DB error has occurred. Error code: 0x80004005.
    An OLE DB record is available.  Source: "Microsoft Access Database Engine"  Hresult: 0x80004005  Description: "The Microsoft Access database engine cannot open or write to the file ''. It is already opened exclusively by
    another user, or you need permission to view and write its data.".
    Pleas suggest me the correct way of solving above issues.
    Thanks in advance :)
    regards,
    Vipin jha
    Thankx & regards, Vipin jha MCP

    Hi ,
    Please refer the below link for Looping multiple worksheet in a single SQL Table.
    http://www.singhvikash.in/2012/11/ssis-how-to-loop-through-multiple-excel.html
    Note:-If you using excel 2010 then you have to use EXCEL 12.0 .
    Above link explaining  step by step of Looping multiple worksheet in a single SQL Table.
    regards,
    Vipin jha
    Thankx & regards, Vipin jha MCP

  • Somebody Knows how to use Roambi with Excel spreadsheet? I leed the process. Thanks

    Somebody Knows how to use Roambi with Excel spreadsheet? I leed the process for my IPAd

    I don't even know what it is, but have you explored the support available from the developer?  http://www.roambi.com/iphone-videos.html

  • How do I fill an Excel spreadsheet with the contents of a DataTable? (C#, OleDb)

    The following fills a DataTable with the contents of an Excel spreadsheet.
        oledbCmd.CommandText = "SELECT * FROM [" + stSheetName + "$]";
        DataTable dtDataTable = new DataTable();
        using (OleDbDataAdapter oledbAdapter = new OleDbDataAdapter(oledbCmd))
        oledbAdapter.Fill(dtDataTable);
    How do I fill an Excel spreadsheet with the contents of a DataTable?
    bhs67

    You can try this Excel library, it can help u to
    export datatable to excel to Database.
    After add the reference to your project ,add the following code:
    private void button1_Click(object sender, EventArgs e)
    //connect database
    OleDbConnection connection = new OleDbConnection();
    connection.ConnectionString @"Provider=""Microsoft.Jet.OLEDB.4.0"";Data Source=""demo.mdb"";User Id=;Password="
    OleDbCommand command = new OleDbCommand();
    command.CommandText = "select * from parts";
    DataSet dataSet = new System.Data.DataSet();
    OleDbDataAdapter dataAdapter = new OleDbDataAdapter(command.CommandText,connection);
    dataAdapter.Fill(dataSet);
    DataTable t = dataSet.Tables[0];
    //export datatable to excel
    Workbook book = new Workbook();
    Worksheet sheet = book.Worksheets[0];
    sheet.InsertDataTable(t, true, 1, 1);
    book.SaveToFile("insertTableToExcel.xls");
    System.Diagnostics.Process.Start("insertTableToExcel.xls");
    http://www.e-iceblue.com/Tutorials/Spire.XLS/Spire.XLS-Program-Guide/Data-Export-/Import-Export-Datatable-to-Excel-from-Database.html

  • Excel  Spreadsheet for MAC

    Is there an excel spreadsheet for MAC (OS X v10.8.5)? I notice the Text Edit does not have a feature that will automatically group names alphabetical order.

    If you are needing to merely sort a list of items - if you ever need more... problem solved
    http://www.barebones.com/
    Professional tools - easy to use
    BBEdit (Free trial) or TextWrangler (BBEdit's baby brother = just plain FREE) will do the trick
    QWERTY keyboard sorted in milliseconds - took much longer to type and than find the menu command
    options for sort results are very robust - this was sort to new document - original behind
    CCC

  • How do I download a excel spreadsheet from my iPad back to my Mac Pro laptop

    how do I download an excel spreadsheet from my iPad back to Mac Pro. the tech at the store showed my how to upload but not down load.

    It kind of depends on how it is setup to sync. You can try to reverse his steps.
    If you have icloud and use numbers - it will be done by icloud and you don't need to do anything
    If he used file sharing in itunes, you need to drag that document backwards.
    You can also email it.
    And perhaps there are other ways as well.

  • How do I get my money back for an App I bought yesterday that has crashed?

    How do I get my money back for an App I bought yesterday that has crashed?

    Where did you buy this app?  If it was a Mac App Store app, which one was it?  If it was a third party app you will have to approach the developer and / or the seller.

  • I filmed several takes of the same scene for a movie. I trimmed the best clips from each take and put them into the project screen. However, I can't figure out how to make it flow seamlessly as one scene. Can someone please help me??

    I filmed several takes of the same scene for a movie. I trimmed the best clips from each take and put them into the project screen. However, I can't figure out how to make it flow seamlessly as one scene. Can someone please help me??

    1-800-676-2775  apple support   tech support 1 800 275 2273
    If your computer is on one minute before it freezes, than you have one minute to secure your serial number.
    click the apple----->click about this Mac ------> click on version----> until you see the serial number.  You may have to do this a couple of times if it freezes before you have all the numbers.  A camera might help.
    Good Luck

Maybe you are looking for