How can I put data to cell according to what data you entered first?

I'm using DDE to simulate vi to excel, it display the data to excel correctly, according to what data i entered, but i already assign specific cell to a specific data. i want that for example, the data that has been read is SOG row 1 column 3. and FOG row 2 column 3. how can i distinguished what data read first? bec. if you first entered data FOG it will entered in row 2 and if you entered SOG it will appeared in row 1, if you have a lot of entered data you will not distinguished what data enetered first.
can you please give me an idea how can i solve this?
Thank You

I'm not totally sure if I understand your question, but it seems to me that you have two pieces of data - SOG and FOG. This data will be written to your Excel file in the same location each time. Are you writing FOG and SOG from the same VI? If so, why not use a shift register to keep order? Another option is to insert a time stamp next to the SOG or FOG data and then view the time stamp to know the order. Or, you could write the data to a simple text file. Keep appending the data. When you want to know the order, just open the text file and you will have the insertion sequence there. Good luck.

Similar Messages

  • How can I put a list in alphabetic order?

    How can I put a list in alphabetic order?

    If you don't mind putting the list in a Table, you can use the table tools to sort the rows into alphabetic order. If you don't like the idea of a table in your document and you don't want to go through converting your text to a table and back again, you can download, and install, and setup, Devon WordService, a free third party app that provides sorting and many other useful functions.
    Jerry

  • How can I put a passcode on imac ?? ( imac is from 2008)

    How can I put a passcode on imac ??
    Thank you for your help

    system preferences>security and privacy>general

  • My ipad have my apple ID and my wife has her iphonewith her apple ID. How can i put her apps to my Ipad?

    my ipad have my apple ID and my wife has her iphone with her apple ID. How can i put her apps to my Ipad?

    Do you mean that you removed the phone from the 'manage devices' section of your iTunes account ? If you do then that won't stop you being able to purchase items on your phone - you only need to be logged into an account to be able to purchase with it.
    If you do mean the 'manage devices' section then you can associate, or re-associate, a device (or computer) by using iTunes Match, or automatic downloads, or redownloading past purchases on it : http://support.apple.com/kb/HT4627

  • How Can I put an Artists Live Albums in a separate folder, so they sort by "Concert Date" in iTunes and do not "intermingle" so to speak with Studio Albums?  Is this possible?

    How Can I put an Artists Live Albums in a separate folder, so they sort by "Concert Date" in iTunes and do not "intermingle" so to speak with Studio Albums?  Is this possible?
    That is about the best way I can phrase my question.
    I put year/month/date at the beginning of a show, hoping for them to sort by date and I get mixed results.
    Would creating a Folder within the Artists' existing folder  that said "Pearl Jam Live", inside the "Pearl Jam" folder in iTunes Media help this "Date Sorting Issue"?
    Thank you.

    Or is there a way to go through aperture to make a new reference library that I can move the masters into later?
    you do not move the masters into a references library - you turn your current library into a referenced library.  As Terence Devlin said:
    File -> Relocate Masters
    What you should set up:
    Select a folder, where you want to store your referenced files - probably on an external drive.
    Decide on a hierarchical folder structure inside this folder - that is completely up to you.
    Select a project from your library and use the command "File -> Relocate Masters/Originals" to move the original image files to the folder where you want to go them to. Only take care not to send two projects to the same folder.
    Alternatively, if you do not care about the folder structure Aperture will use, select all images at once from the "Photos" view and let Aperture decide how to assing the folders - in the "Relocate Originals" dialoge you can specify a subfolder format.
    Regards
    Léonie

  • I backed up files onto an external hard rive form my old PC. Now I want to retrieve the files to put on my mac but it is telling me to format it to Mac. How can I do this without erasing all of the data on my hard drive?

    I backed up files onto an external hard rive form my old PC. Now I want to retrieve the files to put on my mac but it is telling me to format it to Mac. How can I do this without erasing all of the data on my hard drive?

    Your drive was used with a PC and formatted NTFS which is proprietary Microsoft format.
    You need to install a third party program that will read the NTFS format.
    There is various software from PARAGON, Tuxera and NTFS-3G
    When you get the data off and have verified it to be good, reformat the drive either HFS+ for Mac use only, or for Mac and PC use then MSDOS (FAT32) for under 4GB files (best) or exFAT (for larger than 4GB files) is proprietary and Microsoft is appling for a patent, which would likely mean OS X won't be allowed to read it anymore without a licensing fee and you'l have to pay another third party software company to read the format, just like NTFS is.
    The less you have to rely upon third party sources to read your drives the better, this way if you have a issue and need to read the drive on another machine you don't need the software, and a internet connection and a credit card and...and...and...

  • How can I put a parenthesis around the number?

    Hi expert people!!!
    One question:  How can I put a parenthesis around the number because I have this
    write:   /123 t_bsid-pago1, 141 t_bsid-pago2,
              157 t_bsid-pago3, 175 t_bsid-pago4,
              193 t_bsid-pago5.
    and if I put the parenthesis hardcoded like this:
    write:   /123 '(', t_bsid-pago1,')'.
    when the variable are printed the parenthesis is write very separated from the amount.
    I know that maybe I can use the CONDENSE or CONCATENATE statement but for that I need to create a variable type N, or STRING and if I do that I don't know how can I put the decimals points back.
    Thanks!!

    Hi Carlos,
    Try this:
    REPORT  ZTESTRAJ.
    data: v_val(10) type p decimals 2 value '123456.75',
          v_text type string.
    start-of-selection.
      write:/ v_val.
      v_text = v_val.
      concatenate '(' v_text ')' into v_text.
      condense v_text no-gaps.
      write:/ v_text.
    <b>Output:</b>
    test program...      
    123,456.75 
    <b>(123456.75)</b>          
    Regards,
    Raj
    Message was edited by: Rajasekhar Dinavahi

  • How can i put a "/" or "\" in a file name with filewriter?????

    hi there
    how can i put "/" or "\" in a file name? i am using filewriter to create file, here is my code
    String fileName = year+"\\"+month+"\\"+date+":"+hour+":"+minute+":"+second+FILE_EXTENSION;
    fw = new FileWriter("users"+"/"+userDirectory+"/"+OUTPATH+"/"+fileName, false);
    i keep getting error message :"invalid file name, path, directory...", i want to have the following format in my file name: yyyy/mm/dd:hh:mm:ss.txt,
    do you know how to get date and time in this format: ie. March 10, 2002 14:01:32, or something like this?
    thank you

    You are using invalid characters in you name. For example,
    : - is used to separate the drive from the path
    / - is used to separate directories
    therefore they can't be used in the filename.
    Open an editor and try creating a file using the format you want and see if the editor can save it, before attempting to do it in Java.

  • How can I put the report generated by a program into a File?

    Hi all,
       How can I put the report generated by a program into a File?It can be in TXT format or excel format which ever is possible.
    I need to export this file to memory,How can I do that??
    Regards,
    Shashank.

    Hello Shashank,
    Please ignore my previous answer... Ofcourse it works...
    There are several ways to do this...
    two of them are
    1. List -> Save -> File and press enter..
        it will ask for the format, then path where to save it. Just give the path.
    2. Using function module 'GUI_DOWNLOAD'.
    I'm giving the example bellow which explains the usage of both GUI_UPLOAD and GUI_DOWNLOAD.
    To do this... you need to have folder with name 'TEST' and a .txt file in it with name 'test'. And contents of it are :
    TEST1             ,BOT 
    TEST2             ,BOT 
    TEST3             ,BUT 
    with spaces.
    REPORT zssr_bdc .
    DATA: BEGIN OF g_t_itab OCCURS 0,
            matnr LIKE mara-matnr,
            maktx LIKE makt-maktx,
          END OF g_t_itab.
    DATA: g_t_bdcdata TYPE TABLE OF bdcdata.
    DATA: path TYPE string,
          path1 type string.
    path = 'C:\Documents and Settings\ssr3kor\Desktop\TEST\test.txt'.
    path1 = 'C:\Documents and Settings\ssr3kor\Desktop\TEST\test1.txt'.
    *contents of test.txt    *
    *TEST1             ,BOT  *
    *TEST2             ,BOT  *
    *TEST3             ,BUT  *
    CALL FUNCTION 'GUI_UPLOAD'
      EXPORTING
        filename = path
      TABLES
        data_tab                      = g_t_itab.
    LOOP AT g_t_itab.
      WRITE:/1(18) g_t_itab-matnr, 20(40) g_t_itab-maktx.
    ENDLOOP.
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
       filename = path1
       filetype                      = 'ASC'
      TABLES
        data_tab                      = g_t_itab.
    Now you will get one .txt file with name 'TEST1.TXT' in the TEST folder.
    <b>REWARD POINTS IF IT IS HELPFUL</b>
    Regards
    Sasidhar Reddy Matli

  • My ipod is brand-new and I mistakenly pressed the "restore" option! How can I put everything back to normal now?

    My ipod is brand-new and I mistakenly pressed the "restore" option! How can I put everything back to normal now?
    And after that, could you explain to me how can I put songs in it?

    Re-sync your apps and content from iTunes on your computer or redownload it from the iTunes Store, then restore from your backup:
    http://support.apple.com/kb/ht1766
    That should put back most if not all of your settings and data. As to putting songs on, either purchase them from the iTunes Store or, again, sync them from iTunes:
    http://www.apple.com/support/ipodtouch/syncing/
    You might find it worthwhile to read the User's Guide:
    http://manuals.info.apple.com/en_US/ipod_touch_user_guide.pdf
    Regards.

  • How can i put mandatory fields in my selection screen

    I am having Sales Office,Sold to Party,Sales document Number,Sales Group,Date of Creation,Name Of The Person Who Creat and Short Text For Sales Order in my selection scrren.How can i put sales office and sold to party fields manadatoty input fields at selection sceen.

    hi,
    Use obligatory keyword while you are declaring the fields of selection screen.
    Example for the same is :
    Obligatory
    e.g Parameters p_id like vbak-vbeln obligatory
          Select-options s_vbeln for vbak-vbeln obligatory
    I hope this will solve your problem.
    Thanx.

  • Hi I've got a I phone 5 c how can I put my number for I message instead ov email

    HI I have a I phone5 c how can I put number for I message instead of e mail

    It is there - at the bottom below the section - you can be reached by iMessage at.
    The iPhone's cell phone number is automatically registered with iMessage along with your Apple ID email address.

  • HOW CAN I PUT THE AMOUNT WITH THE SIGN OF DOLLAR?

    HI!
    HOW CAN I PUT THE AMOUNT WITH THE SIGN OF DOLLAR?
    BECAUSE WHEN I WRITE THE DATA THE AMOUNT OVERWRITE THE SIGN.
    THANKS PEOPLE

    THIS IS THE WRITE PART:
    [code]
    WRITE:
              /97 t_bsid-dmbtr,          "Invoice Amount
              104 '$',
              104 t_bsid-fecha,          "Payment Date
              114 t_bsid-pago,           "Payment Amount
              116 '$'.
    [/code]

  • How can I put an image onto a postcard format?

    How can I put an image onto a postcard format?

    By postcard format do you mean crop the picture into a postcard shape?
    If so, here is one way: Activate the Rectangular Marque tool. Set Style to Fixed Aspect Ratio, and enter the dimensions for Width & Height. In this example I used a standard postcard size of 6" x 4.25".  Open your picture, draw out the rectangle, and Image > Crop. The picture will now be in the 6 x 4.25 proportion.
    To get it to the actual 6" x 4.25" size, do Image > Resize > Image Size. Check the Constrain Proportions Box, and enter either the true Width or Height; the other dimension will change accordingly.
    If this is not what you are trying to do, please be more specific.

  • How can I put everything back in my iPhone to the new iTunes?

    My computer was broken down and I bought a new one.
    I download an new iTunes, of course nothing inside!
    I just want to know how can I put back all my things in iPhone to the new iTunes!
    That's means I have all the things( songs, apps...etc ) in my iPhone and I just want to copy those things fully to the new iTunes, without losing anything!
    Looking for help and thank you so much!

    You should be able to:
    Backup the device to the new installation
    Transfer your purchases into a newly authorized library
    Recover any other media using third party tools as suggested in this post
    Restore the device from the backup
    This process should switch the association of the device to the new library, preserving the data and settings in your apps.
    May also be prudent to attempt a backup to iCloud directly from the device before you start... Settings > iCloud > Storage & Backup > iCloud Backup > On. It won't save any media but it would preserve the general account settings and documents in case anything goes wrong while you are trying to extract your other data.
    When you get it all fixed, make a backup!
    tt2

Maybe you are looking for

  • [SOLVED]problem with UEFI and Windows 8

    Hi guys, I have installed archlinux but have the problem with grub2 and UEFI Im not have  /boot/efi/efi/microsoft/boot/bootmgfw.efi for install grub2: modprobe dm-mod modprobe efivars grub-install --target=x86_64-efi --efi-directory=/boot/efi --bootl

  • Sharing with the wife (NOT sharing the wife!)

    I would like to have a common shared address book and calendar with my wife. Here's the history... Have had a .mac/MobileMe/iCloud account all the time on my home Intel iMac (running Lion) and iPhone 3G/4 and iPad 2. I gave my wife my old iPhone 3G w

  • How to get font's information from PDF of page item?

    The PDF file is placed in a document of InDesign.How to get the list of font's name from the PDF.I would like to know the font which is used in the PDF file.

  • Javascript Behaviour changed in 3.1 or latest security update?

    Since letting software update install everything on my Macbook Air, several sites have started to misbehave in Safari. Specifically, Javascript launched new windows are not happening. An example is at http://www.telegraph.co.uk where the "Matt" and "

  • Search function for BMW Connected Drive

    The new Spotify integration with Connected Drive on BMW works really well! EXCEPT that there is no 'SEARCH' tab so I can only view my saved music and pre-selected genres and playlists. This means you can't search for any artist/album/genre while on t