I have a problem with writing measurement to excel after 15s do-while data acquisition

Dear Sir/Madam
Currently, I am trying to write a 15 seconds of measurement into an excel file. The 15 seconds measurement is done by do-while function.
But unfortunately, after the 15 seconds measurement, not all the data can be written to the excel, only one reading was successfully written. 
The Write to Measurement to File is outside the frame of do-while loop.
Could you please tell me how to solve this problem?
Many thanks for your help.
kind Regards
Ken
Solved!
Go to Solution.

ken84 wrote:What tunnel do you mean please?
The output tunnel that you have wired to your Write To Measurement File that is on your While loop.
Might I recommend some tutorials.
LabVIEW Basics
LabVIEW 101
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines

Similar Messages

  • Hello, I have a problem with my mac book pro after running the battery dead on a game.  The display has shrunk leaving two black margins on either side. What to do ?

    Hello, I have a problem with my mac book pro after running the battery dead on a game.  The display has shrunk leaving two black margins on either side. What to do ?

    Go to System Preferences>Displays and set the resolution to "Best for this computer" (or something to that effect).
    Clinton

  • I have a problem with the apple service team after making a payment. Where do I take the issue up?, I have a problem with the apple service team after making a payment. Where do I take the issue up?

    I have a problem with the apple service team after making a payment. Where do I take the issue up?, I have a problem with the apple service team after making a payment. Where do I take the issue up?

    If you are dissatisfied with the Service you have received and wish to Contact Apple...
    India
    Start your support request online and we'll connect you to an expert.
    (91) 1800 4250 744
    www.apple.com/in/support/
    From the above Link...
    To Contact Apple World Wide for Support and Service
    http://support.apple.com/kb/HE57

  • Have a problem with my screen turning blue after exiting Safari or Firefox, what is going on?

    Have been having an intermittent problem with my MacBook Pro running 10.6.8.
    When either running Safari or Firefox the desktop will turn blue and i have to hard reboot in order to use my Mac again.
    Please help.

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ If you’re running Mac OS X 10.7 or later, open LaunchPad. Click Utilities, then Console in the page that opens.
    Step 1
    Enter "WindowServer" (without the quotes) in the Filter text field. Post the messages from the time of the last crash, if any — the text, please, not a screenshot.
    Important: Some private information, such as your name, may appear in the log. Edit it out by search-and-replace in a text editor before posting.
    Step 2
    Still in the Console window, look under System Diagnostic Reports for crash reports related to the same process. The report name starts with the name of the crashed process, and ends with ".crash". Select the most recent report and post the contents — again, the text, not a screenshot. In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.) Please don’t post shutdownStall or hang logs — they're very long and not helpful.

  • I have a problem with the iPhoto not updating after the hard drive recall.

    The iPhoto with not update after doing the Hard Drive Recall. It keeps saying I don't have the right ID. I have tried resetting all my passwords and no change. What do I need to do to fix this problem?

    Which OS version did you have when you acquired iPhoto and was it on a DVD (iLife) or did you download it from the app store initially?
    And, last question, did you skip Mavericks? Mavericks owners were given the opportunity to update iPhoto to an app store version free of charge; if you skipped it and do not have a backup or the installer DVD or purchased a new computer recently, then you'll need to purchase it.

  • Does anyone else have a problem with their text tone 'glitching' after updating to iOS 5?

    Since updating to iOS 5, my text tone 'glitches' whenever i recieve a message. By glictching, I mean that it sounds doubled or sometimes it plays, stops then plays again very quickly. I've tried resetting the phone, this works for a few messages then starts again :/ Any suggestions on how to fix this would be much appreciated.
    Many thanks

    It would be nice to get this issue fix.  I didn't notice it until today.  The text tone is very sporatic, or delayed, alerts me twice, and it's just not what it used to be like.  C'mon Apple - fix the glitches, please.

  • Y have problems with Photoshop Elements 12  Bug after reinstallation complet  Impossible working ??

    Morning !
    We have many problems with PHOTOSHOP ELEMENTS 12 ?
    After installation on MAC OS X   YOSEMITE  .
    S O S !!

    Exporter vers photoshop do you receive any specific error messages?  In what way is Photoshop Elements 12 not working?

  • I have a problem with the FM "RH_START_EXCEL_WITH_DATA".

    Hi,
    i have a problem with the FM "RH_START_EXCEL_WITH_DATA". After the release of our SAP-system changed to gui 7.1 the FM doesn't work. After calling the FM with an filled internal table Excel starts but the spreadsheet is empty.
    What can i do without changing Function 'RH_START_EXCEL_WITH_DATA'?
    CALL FUNCTION 'RH_START_EXCEL_WITH_DATA'
    EXPORTING
    data_name = hf_datei
    data_path_flag = 'W'
    wait = ' '
    data_table = iexcel[]
    EXCEPTIONS
    OTHERS = 1.
    IF sy-subrc <> 0.
    MESSAGE e020 WITH hf_datei sy-subrc.
    ENDIF.

    Hi Jake,
    Pass the filename with .xls extension.
    e.g
    DATA: t_scarr LIKE STANDARD TABLE OF scarr.
    SELECT * FROM scarr INTO TABLE t_scarr UP TO 10 ROWS.
    CALL FUNCTION 'RH_START_EXCEL_WITH_DATA'
    EXPORTING
       DATA_FILENAME               = 'Santhosh.xls'
       <b>DATA_PATH_FLAG</b>       = 'W'
       DATA_TABLE                      = t_scarr[]
       WAIT                                   = 'X'
    EXCEPTIONS
       NO_BATCH                  = 1
       EXCEL_NOT_INSTALLED       = 2
       INTERNAL_ERROR            = 3
       CANCELLED                 = 4
       DOWNLOAD_ERROR            = 5
       NO_AUTHORITY              = 6
       FILE_NOT_DELETED          = 7
       OTHERS                    = 8
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    And u just check the Value range for domain HRPATHFLAG. U will come to know what are values u can pass for the <b>DATA_PATH_FLAG---Path Flag for Directory Determination</b>. U have some 6 values for that domain.Choose carefully or else u ll get a download error.
    I hope this will help u.
    Thanks & Regards
    Santhosh
    Message was edited by:
            santhosh ds

  • Hello. I have a problem with the iphone. I had the misfortune of Smader it for a half years ago. but now all my pictures away. and I think it is a security various measures. what should I do?

    hello. I have a problem with the iphone. I had the misfortune of Smader it for a half years ago. but now all my pictures away. and I think it is a security various measures. what should I do?

    ckuan wrote:
    iCloud pushes all your photos to the My Photo Stream album on your devices and computers, and manages them efficiently, so you don’t run out of storage space.
    Your iOS devices keep a rolling collection of your last 1000 photos in the My Photo Stream album. From there, you can browse your recent photos or move the ones you like to your Camera Roll or another album to keep them on your device forever.
    (Here's that part I'm bolding for you to reference): Because your Mac and PC have more storage than your iOS devices, you can choose to have all of your My Photo Stream photos automatically downloaded. In iPhoto or Aperture preferences on your Mac, select Photos (or Photo Stream) > My Photo Stream > Automatic Import. All of your photo stream photos will be imported into your Events, Projects, Photos, Faces, and Places folders in iPhoto or Aperture. On your PC with My Photo Stream enabled in the Control Panel, all of your photos will be imported into C:\\Users\<user name>\Pictures\iCloud Photos\My Photo Stream. For iCloud Control Panel 2.0 to 2.1.2 users, the path isC:\\Users\<user name>\Pictures\Photo Stream\My Photo Stream .
    Exactly.  It keeps a collection of the most recent 1000 photos in your Photostream Album on your iOS device.  That's the limit of the displayed images on an iOS device.  Not the upper limit of storage.  It's like the call history.  You can have more than 100 calls, but only the most recent 100 calls show on the device. You can still get your entire call history from your wireless carrier.  And you can still download all of your Photostream photos from Photostream using iCloud Control panel on a PC, or the iCloud option in System Preferences on a Mac.
    iCloud: My Photo Stream and iCloud Photo Sharing limits
    http://support.apple.com/kb/HT4858
    http://help.apple.com/icloud/#/mmc0cd7e99
    My Photo Stream upload limits
    The My Photo Stream limits below are established based on anticipated upload patterns. Currently, My Photo Stream upload limits are as follows:
    Uploads to My Photo Stream per hour: 1000 photos
    Uploads to My Photo Stream per day: 10,000 photos
    Uploads to My Photo Stream per month: 25,000 photos
    If you exceed one of these limits, your uploads to My Photo Stream will be paused temporarily and you may see a notification message on your device. Your uploads will resume automatically after you no longer exceed one of the limits, such as in the following hour or on the following day.
    You can upload 10,000 photos in a single DAY.

  • Hi, I have a problem with my ipod touch: I can not activate my ipod with my Apple ID, it tells me that my account can not activate this device, but my ID apple is OK and the ipod is mine, I have my ballot, HELP PLEASE

    Hi ...
    I have a problem with my ipod touch:
    I can not activate my ipod with my Apple ID, it tells me that my account can not activate this device, but my apple ID is OK.
    The proposed me as ipod help entering previous credentials, but the ipod is mine from the beginning, in fact I have my ballot, not bought down to another user.
    Actually I do not know how to activate it in Chile were unable Store MacOnline solve my problem, it is for this reason that I am writing to see if someone can help me.
    PLEAAASEEE
    Thank you.
    Sebastian

    Thanks for your answer.
    actually, my ipod will not let me activate it with apple id, this happened when the new iOS acutalizó understand that has more security, but do not know what to do.

  • LaCie 6TB drive ejects when Air sleeps: I use two 6TB LaCie drives - home and office with my Air, which travels with me. Only have a problem with one. Is there a fix?

    LaCie 6TB drive ejects when Air sleeps: I use two 6TB LaCie drives - home and office with my Air, which travels with me between the locations. Only have a problem with one that inappropriately ejects when the Air sleeps (and only sometimes). Is there a fix? I've read others who believe that the problem is with the operating system (I'm using 10.9.2). But my problem suggests that it's with one of the LaCie's. Any suggestions about how to fix?

    Lacie doesnt make HD, thats a Seagate inside the box.
    Is there a fix?
    Yes, get a 4TB max HD,    6TB drives are both new and have known issues,  ...in fact so do most all 4TB drives.
    my problem suggests that it's with one of the LaCie's
    You mean Seagate
    Large external hard drives are great! Large external hard drives are horrible
    It is a common premise that people are overjoyed at the dropping prices per terabyte on external hard drives, and the first thing that enters most peoples minds is "great, I can put all my stuff on one drive,... all of it!" However considerations need to be made in creating a giant single choke point for not mere data loss, but seriously large data loss. If there is at the very least yet another redundant copy, this is fine, otherwise do not consider it whatsoever. Some 3TB and 4TB drives of all mfg. have, at the time of this writing, reliability concerns currently and best recommendation is staying at 2TB drives or less.
    Advantages and disadvantages of larger 3TB and 4TB external drives must be weighed

  • Strange problem with color measure in Mac.

    Hello, I am having a strange problem with color measure in Mac. For example i create a gradient in Photoshop from color 200 200 200 to color 240 240 240. When i measure the color of the gradient with the color measure tool of Photoshop or with the built in OS X color measure tool the measured color is from 200 199 197 to 240 240 238. I have measured the same gradient with Photoshop for PC and the values are OK (the same values that i create).
    I dont know what is the problem, but i belive that the colors that i create would be the same that i measure after creating them, and also the same values between Mac and PC. I will appreciate it a lot any help or information that you could give me that helps me to understand what is happening here.
    Thank you for your time
    Marcelo.

    Yep you got it, proof as monitor basicaly strips out any profiling and just delivers it straight.
    is there any way to make the OS X color measure tool to measure the original color values
    You mean the document colors - No, like I said photoshop is filtering your image through document profile, proof setup and monitor profile. Why do you want to use Digital color meter anyway for this?
    i dont understand what is the point to measure color values that will change every time a calibrate my monitor.
    Because color values are 'bigger' than whats on your monitor. Your monitor (via photoshop) is only doing the best it can to display those values - which can be anything from LAB colors outside the gamut of your monitor - to CMYK colors. Calibrating it is the only way to allow your monitor to do this in any way accurately. (not ever really possible) Monitors have a certain gamut and are only dispays/representations of the REAL colors that a document, with a profile, holds. So there's only one good reason to measure monitor values, and that's to generate a monitor profile.

  • I have a problem with wifi in my iphone 4s, i already try everything and download latest version 7.1(11D167) but wifi switch is not working, its my humble request to Apple support team that pls resolve this problem as soon as possible because

    I have a problem with wifi in my iphone 4s, i already try everything and download latest version 7.1(11D167) but wifi switch is not working, its my humble request to Apple support team that pls resolve this problem as soon as possible because its a prestiage of Apple Company.
    Pls inform me how can i resolve the problem of wifi.

    You have to go to autherized iPhone agent.

  • Have a  problem with Lightroom 5.4.  Since the program crashed yesterday it won't launch, it comes up with the message "Lightroom encountered an error when reading its preview cache and needs to quit".  "  Lightroom will attempt to fix this problem net ti

    Have a  problem with Lightroom 5.4.  Since the program crashed yesterday it won't launch, it comes up with the message "Lightroom encountered an error when reading its preview cache and needs to quit".  "  Lightroom will attempt to fix this problem next time it launches".  Except that it doesn't, I keep getting the same message and the program closes.  Does anyone know what I  can do to repair it?  Can't back up, can't do anything.

    There are dozens of threads in this forum that describe the fix

  • I have a problem with the sync between iTunes and ipad2. I can not see the files in iPad. Help me please.

    I have a problem with the sync between iTunes and ipad2. I can not see the files in iPad. Help me please.

    Cannot see what files ? Music (synced music should appear in the iPod app), films/TV shows (Videos app), documents ... ?

Maybe you are looking for

  • Payment block due to quality reasons

    Hi Gurus, My client would like to have a the payment blocked when the material is in quality inspection upon GR. Using a QM control key 0007 in material master, we can set invoice block due to quality reasons. However, I would like to have the paymen

  • Related files not showing in CS5

    In Dreamweaver CS4, files related to the source file (for example, source file: index.php, related file referenced in source file: index.css) are shown just below the source file name in the toolbar above code/design view, but related files are not s

  • Help suggestions RAW JPG (noise / sharpness)

    Hi, Does anyone have a better suggestion for this picture to convert from RAW to JPG, particularly noise and sharpness. I have put the standard JPG image (from the camera) + RAW file + XMP file at the following website WETRANSFER.COM To download thes

  • Satellite P300 (PSPC4E) - BIOS is corrupted

    I have some trouble with my Toshiba Satellite P300 (PSPC4E). The BIOS is corrupted and I'm trying to recover it. I've disconnected the battery, HDD and DVD. I successfully created an USB boot disk using HP USB Tool and CrisDisk. It was empty after I

  • Realistic system requirements for Design Premium?????

    Hi, Can anyone give me some realistic system requirements for CS4 Design Premium? I am just about ripping my hair out with having to reboot several times a day because i'm running out of memory! I am current running:  32 bit XP SP3, 3GHz processor an