Different spreadsheet output on French locale

Hi guys,
So I moved some VIs over to another laptop. The laptop language is set to French. Now, my output is different. I changed my laptop language to English, in hopes of having it work properly again. No luck.
Look at the screenshot below:
It is supposed to separate into different columns at those commas.
But in French, a comma is equivalent to the English decimal.
Anybody know how to fix?? Changing to English Operating System does not work.
I attatched VI below.
Thank you all
Solved!
Go to Solution.
Attachments:
Save to spreadsheet 2.vi ‏22 KB

RavensFan wrote:
MICROSOFT YOU IDIOTS.  CSV=COMMA SEPARATED VALUE.  RECOGNIZE THE COMMA AS A SEPARATOR!
Well, in countries with comma as decimal seperator, a comma will not work as field separator. There is no good standard, but as Matt said, using a semicolon as field delimiter sometimes works. (see also this disucssion)
Instead of using csv files, I would recommend to use the default tab delimiter and save the file as *.txt. Excel will have no problem opening it.
LabVIEW Champion . Do more with less code and in less time .

Similar Messages

  • In RoboHelp 11 Responsive HTML5, is it possible to have 2 different language outputs in one generated output file?

    In RoboHelp 11 Responsive HTML5, is it possible to have 2 different language outputs in one generated output file, similar to WebHelp where the use can select the language from a drop-down list? In Webhelp output you could create multiple Content categories. Is there something similar with the responsive output, or am I forced to have a completely separate set of output files for each language (for example, English, Japanese, Chinese, Korean, and Arabic)?

    As Rick, mentions, there's no default way.
    Having said that, there's nothing stopping you from doing it yourself. You can add a kind of language selector to the layout and set that for every html5 output. With some JavaScript, you can have the user switch between your outputs. It would look like content categories, but you'll have build it yourself.

  • How do I save data in different spreadsheets inside an excel file?

    I am already able to save data into an excel file, but how can I instead send the data separated into segments, where each segment is placed on a different spreadsheet on the excel file I specify.

    In the ActiveX examples that ship with LV there is a good example of how to control Excel. Part of the process of opening a Excel file is to open the workbook (Excel document) and then open a specific worksheet (spreadsheet).
    Try experimenting with that example and you should be able to figure out how to select different worksheets. If you still have trouble give another holler.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • Downloading Report output to a Local File

    Hi,
    I want to download the my ALV Report output to a local file.
    I am following the menu options from ALV output:
      LIST --> Export --> Local File --> Unconverted Format  --> I entered a text file name on the desktop.
    The data is being downloaded to Local text file, but some columns are missing.
    I don't know what is the reason?  Can anybody tell what may be the reason?
    Has anybody come across this issue earlier?
    Please let me know the solution.
    Thanks in advance,
    Sreenivas Reddy.

    Hi vik,
    I have followed the same steps
       LIST --> Export --> Local File --> Here I enter test.xls file on the desktop.
    I am missing the same columns, The heading are displayed for all fields, but data for some initial columns are missing.
    Can you please through some light on this error.
    Thanks,
    Sreeni.

  • How to create a link between 2 cells in different spreadsheets?

    when using numbers on MacBook Pro/IOS X - how to create a link between 2 cells in different spreadsheets?

    In the cell where you want the duplicate data to appear from another sheet/table do the following:
    type the equal sign ("=") then click the cell you in the sheet table while contents you want to appear in the cell where you just typed the equal sign"
    it reads "The cell I click equals the result of the formula or the contents of the next cell I click"

  • How to write the code to send the report output to the local file.

    dear all,
    how to write the code to send the report output to the local file.
    Thanks & Regards,
    Jyothi.

    Hi,
    Try this , it will display report and download the file as well. Just vhange the path and execute
    TYPE-POOLS : SLIS.
    DATA : IT_SCARR TYPE TABLE OF SCARR,
           IT_FCAT  TYPE SLIS_T_FIELDCAT_ALV.
    SELECT *
    FROM SCARR
    INTO TABLE IT_SCARR.
    CALL FUNCTION 'REUSE_ALV_FIELDCATALOG_MERGE'
    EXPORTING
    *   I_PROGRAM_NAME               =
    *   I_INTERNAL_TABNAME           =
        I_STRUCTURE_NAME             = 'SCARR'
    *   I_CLIENT_NEVER_DISPLAY       = 'X'
    *   I_INCLNAME                   =
    *   I_BYPASSING_BUFFER           =
    *   I_BUFFER_ACTIVE              =
      CHANGING
        CT_FIELDCAT                  = IT_FCAT
    * EXCEPTIONS
    *   INCONSISTENT_INTERFACE       = 1
    *   PROGRAM_ERROR                = 2
    *   OTHERS                       = 3
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    EXPORTING
    *   I_INTERFACE_CHECK              = ' '
    *   I_BYPASSING_BUFFER             =
    *   I_BUFFER_ACTIVE                = ' '
    *   I_CALLBACK_PROGRAM             = ' '
    *   I_CALLBACK_PF_STATUS_SET       = ' '
    *   I_CALLBACK_USER_COMMAND        = ' '
    *   I_STRUCTURE_NAME               =
    *   IS_LAYOUT                      =
       IT_FIELDCAT                    = IT_FCAT
    *   IT_EXCLUDING                   =
    *   IT_SPECIAL_GROUPS              =
    *   IT_SORT                        =
    *   IT_FILTER                      =
    *   IS_SEL_HIDE                    =
    *   I_DEFAULT                      = 'X'
    *   I_SAVE                         = ' '
    *   IS_VARIANT                     =
    *   IT_EVENTS                      =
    *   IT_EVENT_EXIT                  =
    *   IS_PRINT                       =
    *   IS_REPREP_ID                   =
    *   I_SCREEN_START_COLUMN          = 0
    *   I_SCREEN_START_LINE            = 0
    *   I_SCREEN_END_COLUMN            = 0
    *   I_SCREEN_END_LINE              = 0
    *   IR_SALV_LIST_ADAPTER           =
    *   IT_EXCEPT_QINFO                =
    *   I_SUPPRESS_EMPTY_DATA          = ABAP_FALSE
    * IMPORTING
    *   E_EXIT_CAUSED_BY_CALLER        =
    *   ES_EXIT_CAUSED_BY_USER         =
      TABLES
        T_OUTTAB                       = IT_SCARR
    * EXCEPTIONS
    *   PROGRAM_ERROR                  = 1
    *   OTHERS                         = 2
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL METHOD CL_GUI_FRONTEND_SERVICES=>GUI_DOWNLOAD
      EXPORTING
    *    BIN_FILESIZE              =
        FILENAME                  = 'C:\Documents and Settings\sap\Desktop\Hi.xls' " Change path
    *    FILETYPE                  = 'ASC'
    *    APPEND                    = SPACE
    *    WRITE_FIELD_SEPARATOR     = SPACE
    *    HEADER                    = '00'
    *    TRUNC_TRAILING_BLANKS     = SPACE
    *    WRITE_LF                  = 'X'
    *    COL_SELECT                = SPACE
    *    COL_SELECT_MASK           = SPACE
    *    DAT_MODE                  = SPACE
    *    CONFIRM_OVERWRITE         = SPACE
    *    NO_AUTH_CHECK             = SPACE
    *    CODEPAGE                  = SPACE
    *    IGNORE_CERR               = ABAP_TRUE
    *    REPLACEMENT               = '#'
    *    WRITE_BOM                 = SPACE
    *    TRUNC_TRAILING_BLANKS_EOL = 'X'
    *  IMPORTING
    *    FILELENGTH                =
      CHANGING
        DATA_TAB                  = IT_SCARR
    *  EXCEPTIONS
    *    FILE_WRITE_ERROR          = 1
    *    NO_BATCH                  = 2
    *    GUI_REFUSE_FILETRANSFER   = 3
    *    INVALID_TYPE              = 4
    *    NO_AUTHORITY              = 5
    *    UNKNOWN_ERROR             = 6
    *    HEADER_NOT_ALLOWED        = 7
    *    SEPARATOR_NOT_ALLOWED     = 8
    *    FILESIZE_NOT_ALLOWED      = 9
    *    HEADER_TOO_LONG           = 10
    *    DP_ERROR_CREATE           = 11
    *    DP_ERROR_SEND             = 12
    *    DP_ERROR_WRITE            = 13
    *    UNKNOWN_DP_ERROR          = 14
    *    ACCESS_DENIED             = 15
    *    DP_OUT_OF_MEMORY          = 16
    *    DISK_FULL                 = 17
    *    DP_TIMEOUT                = 18
    *    FILE_NOT_FOUND            = 19
    *    DATAPROVIDER_EXCEPTION    = 20
    *    CONTROL_FLUSH_ERROR       = 21
    *    NOT_SUPPORTED_BY_GUI      = 22
    *    ERROR_NO_GUI              = 23
    *    others                    = 24
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    CALL METHOD CL_GUI_FRONTEND_SERVICES=>EXECUTE
      EXPORTING
        DOCUMENT               = 'C:\Documents and Settings\sap\Desktop\Hi.xls' "Change path
    *    APPLICATION            =
    *    PARAMETER              =
    *    DEFAULT_DIRECTORY      =
    *    MAXIMIZED              =
    *    MINIMIZED              =
    *    SYNCHRONOUS            =
    *    OPERATION              = 'OPEN'
    *  EXCEPTIONS
    *    CNTL_ERROR             = 1
    *    ERROR_NO_GUI           = 2
    *    BAD_PARAMETER          = 3
    *    FILE_NOT_FOUND         = 4
    *    PATH_NOT_FOUND         = 5
    *    FILE_EXTENSION_UNKNOWN = 6
    *    ERROR_EXECUTE_FAILED   = 7
    *    SYNCHRONOUS_FAILED     = 8
    *    NOT_SUPPORTED_BY_GUI   = 9
    *    others                 = 10
    IF SY-SUBRC <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.

  • Error displaying numeric values with SPREADSHEET output

    Hi, I'm using Reports 10g R2 and I have all my reports with PDF output, they render just fine.
    I want to render some of them with SPREADSHEET output but don't know why in some case numeric values are rendered as ****** instead of the corresponding number.
    The same report shows numeric values correctly in PDF but no in some Excel cells, just SOME of them, not all.
    I know that Excel column is not short because the internal value of the cell are the asterisks.
    What could be happening?
    Thanks!

    Hi Ruby,
    please refer to some very basic documentation on CRM 2007 Webclient UI or the IC Webclient of CRM 4.0.
    What you are trying to do is create a value node and your code ABAP is wrong.
    Here a code sample. Typed it by hand so there might be errors in it.
    data:
      ls_struct  type /mystructure,
      lr_struct_ref type ref to data,
      lr_node type ref to cl_bsp_wd_value_node.
    ls_struc-/attribute1/ = 'Hallo Welt'.
    get reference of ls_struct into lr_struct_ref.
    create object lr_node
    exporting iv_data_ref = lr_struct_ref.
    typed_context->/yourNode/->collection_wrapper->add( lr_node ).
    cheers Carsten

  • How do you reference cells on a different spreadsheet?

    I would like to reference or lookup data in cells on a different spreadsheet/workbook. Is there a way to do this? I do not mean referencing a cell on a sheet within a single spreadsheet/workbook.

    Sorry, but you can't reference a value in another document. And by that I mean one that was saved with a different name. You can combine your related sheets into one document and make references between the sheets, but not between different documents.
    Jerry

  • Finder window's "Network" icon has a name bug in French localized version

    In Mac OS X Tiger (and previous versions already), when running in French localized, the "Network" icon on the left side of Finder window is translated "Réseau". This is correct.
    When no network is available (no cable connected to the Ethernet port for instance), then "Réseau" turns into the english name "Network". When the network is again connected, then "Network" turns back into the French localized name "Réseau".

    653/3099
    Hi Frederic,
    Thank you for this one, but we all are simple Mac users here.
    Please send your feedback here instead:
    - http://www.apple.com/macosx/feedback/
    Thanks again.
    Axl

  • Using different video outputs?

    Hello,
    I was wondering if Director can use the different video
    outputs on many video cards? I'd like to use the S-Video to send
    video to a projector and then the VGA output to a monitor.

    Out of the box... no.
    Check this link.
    http://www.updatestage.com/external/the-mile-high-table-oproducts.html
    Look under "Device Control/Input" and "Video" categories.
    Hope that helps.

  • Linking cells in different spreadsheets

    I need to link cells from different spreadsheets but cannot find a command in Numbers to do this. In Excel it is "Copy" from the first spreadsheet and then "Paste Special" into the second spreadsheet. I cannot find this function in any of the manuals or help files.
    Does anyone know how to accomplish this?
    Maria

    Maria Folsom wrote:
    I need to link cells from different spreadsheets but cannot find a command in Numbers to do this. In Excel it is "Copy" from the first spreadsheet and then "Paste Special" into the second spreadsheet. I cannot find this function in any of the manuals or help files.
    Does anyone know how to accomplish this?
    Is it a living link that you wish to get ?
    If it is, the response is:
    no living link between different documents.
    Between two tables from the same document, you may build living links.
    Assuming that you want to link cell B2 of table 1 of sheet 5
    to cell B2 of table 12 of sheet 1
    click in cell B2 of table 1 of sheet 5
    type the character "="
    cell B2 of table 12 of sheet 1
    press return.
    In cell B2 of table 1 of sheet 5 you will get the formula
    =sheet 1::table 12 :: B2
    Yvan KOENIG (from FRANCE mercredi 23 janvier 2008 22:26:56)

  • French locales on mounted usb

    I use french locales (fr_CA-iso9985-15) and I have no problem, but when KDE automounts my USB keys. It seems then that it ignores my locales  and the display is awful (no accents at all, but %?%"!@ instaed!). Any idea please?

    Yeah. I've installed SP1, and the USB 2.0 drivers. Personally, I don't care too much if I'm using USB 1 or 2.0 as long as it works. I'm only using my USB for a couple game controllers, so bandwidth isn't important (but having them front-mounted is).
    I'm not sure which USB port doesn't work with Bluetooth, and a forum search didn't enlighten me.... so I'm not sure how to answer that.
    Here's some theories I came up with:
    1. Perhaps some Windows configuration error is preventing it from talking to that particular USB port (anyone know of some free diagnostic software that could test this? -- perhaps by talking to the USB device in DOS mode or from a bootable Linux CD or something?)
    2. Perhaps there is a wiring problem on the motherboard which is leaving one of the pins disconnected from that port.
    3. Maybe there's something special that I need to do with pin 10 that I don't know about.
    4. Perhaps the motherboard's USB controller is defective in a way that only one of the USB ports isn't working (I don't know how to test this).
    BTW, thanks for taking the time to respond

  • Getting the classical report's output automatically to local disk

    hi gurus,
                 i need to save the classical report's output into my local disk as soon as the user executes the report or press F8. Mind well, it should not be manual. I know the manual way system->list->save.
    Gaurav

    Check this function module.
    "SO_NEW_DOCUMENT_SEND_API1"
    Check this link for ,Download a report to excel with format .
    http://www.sap-img.com/abap/download-to-excel-with-format-border-color-cell-etc.htm
    Check this link for sample program.
    How to download a ABAP report to text file
    Regards,
    Maha

  • Define Output type and Local destination per user

    Hi Gurus,
    Nowadays us have defined Output type by Sales Organiztion/Order Type (S_TCODE = VV11).
    Is possible define Output type and Local destination per user?. How to do?.
    thanks and best regards,
    Wilson

    Hi Wilson
    As per my understanding of requirement: you want output type and Local destination for each SAP End user (i.e. who is processing sales order) not the customer. If this is the requirement, we have two solution for it:
    1) If for a particular region/sales district customer are contacting to one particular destination, then create access sequence with output type/order type/sales district. Means for one sales district one Local destination. If sales district is big area and you have many local destination with in that, then you can divide it into regions.
    2) Ask your ABAPer to create a Z table and maintain Local destination for all Users. And amend the print program such that before saving the output entry into NAST table, based on SY-UNAME(user's id), fetch the printer (local destination) from Z table and update the NAST table accordingly.
    As per my observations, option 2 is simpler and more effective.
    try and revert.

  • Different Audio Outputs Logic Studio 8

    Hello. I was wondering if apple was able to do this, because that would save a lot of plugging and unplugging of cables and such. Is it possible to select different audio outputs for different programs that you are using on the imac? I run logic studio 8 with a m-audio firewire 410 external soundcard with a couple of monitor speakers. I also have a set of z-5500 connected to my imac via the digital output cable. Is there a way where when i use logic studio 8, the firewire soundcard is used. and for all other purposes, such as watching a movie or listening to music, the digital output is used? Is there a program that can control this? if this is possible. it would help me out A LOT! THANKS

    Hello ecstasurf
    That's a great question?
    Go to: "Applications / Utilities" and open "Audio MIDI Setup" from there you maybe able to switch between the FireWire and the Digital/Analog outputs. I can't give you much more help with that, I don't have an audio FireWire setup so you'll have to play around with the Audio Output Source there.
    Note: If you like, you can drag a copy of the Audio MIDI Setup to your dock for quick and easy access.
    Dennis

Maybe you are looking for

  • Using Scheduling in OWB 10.2.0.1 (Paris)

    Dear all after some clarification on the use of scheduling in OWB 10G R2. We have just installed this version but i have a couple of questions surrounding the scheduling, may i point out that i have no knowledge of schedling in OWB so am relying on t

  • Cannot create/maintain JCO connection : NullPointerException in SLD

    When I want to create a new JCO connection in SLD (via WebDynpro->Content Administrator) , I get an exception : java.lang.NullPointerException      at com.sap.tc.webdynpro.serverimpl.wdc.sl.SystemLandscapeFactory.checkStatus(SystemLandscapeFactory.ja

  • Music player with multiple artist/genre support?

    Hi, Can anyone tell me if any of the available media players support multiple values for tags?  For example, a collaboration would be listed under both artists. I find I never use genres because they tend to be really broad, or I have far too many. 

  • Palm One Quick Install has stopped working

    I just got a Tungsten E2, it was working okay until I tried to install an app - I keep getting the message "Palm One Quick Install has stopped working".  I can't even open the program on my computer.  I was able to upload pictures using hotsync, but

  • Why is my shutter stuck on ipad

    I just received my Ipad2 yesterday - and my camera is already not working   i have tried to reset back to orginal settings like the post says but still when i click on my camera  all that happens is my shutter sits there and will not open.  HELP!!!