Forum FlexPro – Discuss your topic!

Dezimaltrennzeichen beim Export in CSV

Accueil > Community > Automation and VBA > Dezimaltrennzeichen beim Export in CSV

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #12388

    Hallo,

    gibt es eine Möglichkeit das Dezimaltrennzeichen beim Exportieren von Daten in CSV festzulegen? Ich habe es mit FPScript versucht mit:

    
    Dim Tabelle
    Tabelle=1.1111#100#20000000
    
    For i=0 To NumberOfColumns(Tabelle) Do
    
    For j=0 To NumberofRows(Tabelle) Do
    Tabelle[j]=StringSet(Tabelle[j],".",StringFind(Tabelle[j], ","))
    End
    
    End	
    		
    return Tabelle

    Dies funktioniert zwar, leider laufen aber die Schleifen ewig.

    #8071

    Hallo,

    gibt es eine Möglichkeit das Dezimaltrennzeichen beim Exportieren von Daten in CSV festzulegen? Ich habe es mit FPScript versucht mit:

    
    Dim Tabelle
    Tabelle=1.1111#100#20000000
    
    For i=0 To NumberOfColumns(Tabelle) Do
    
    For j=0 To NumberofRows(Tabelle) Do
    Tabelle[j]=StringSet(Tabelle[j],".",StringFind(Tabelle[j], ","))
    End
    
    End	
    		
    return Tabelle

    Dies funktioniert zwar, leider laufen aber die Schleifen ewig.

    #8595
    Bernhard KantzBernhard Kantz
    Participant

    Customizing the Decimal Symbol
    You can customize the decimal symbol used for the input and output of floating point values as follows:

    1) In the Tools menu, click on Options.
    2) In the Options dialog box, click on the Regional Settings tab.
    2) Select the desired mode in the Decimal symbol field.

    Note: This setting does not affect the decimal symbol in formulas. FPScript always uses the decimal point.

    support@weisang.com

Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.