Topic
Dezimaltrennzeichen beim Export in CSV
Home page › Community › Automation and VBA › Decimal separator when exporting to CSV
- This topic has 2 replies and 2 voices and was last updated 16 years, 7 months ago ago by Stefan Palaveev.
-
AuthorPosts
-
24.10.2008 at 08:32 #34814Stefan PalaveevParticipant
Hallo,
gibt es eine Möglichkeit das Dezimaltrennzeichen beim Exportieren von Daten in CSV festzulegen? Ich habe es mit FPScript versucht mit:
[code]
Dim Tabelle
Tabelle=1.1111#100#20000000For i=0 To NumberOfColumns(Tabelle) Do
For j=0 To NumberofRows(Tabelle) Do
Tabelle[i][j]=StringSet(Tabelle[i][j],”.”,StringFind(Tabelle[i][j], “,”))
EndEnd
return Tabelle[/code]
Dies funktioniert zwar, leider laufen aber die Schleifen ewig.
24.10.2008 at 08:32 #34816Stefan PalaveevParticipantHallo,
gibt es eine Möglichkeit das Dezimaltrennzeichen beim Exportieren von Daten in CSV festzulegen? Ich habe es mit FPScript versucht mit:
[code]
Dim Tabelle
Tabelle=1.1111#100#20000000For i=0 To NumberOfColumns(Tabelle) Do
For j=0 To NumberofRows(Tabelle) Do
Tabelle[i][j]=StringSet(Tabelle[i][j],”.”,StringFind(Tabelle[i][j], “,”))
EndEnd
return Tabelle[/code]
Dies funktioniert zwar, leider laufen aber die Schleifen ewig.
24.10.2008 at 22:47 #34815Bernhard KantzParticipantCustomizing 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.
-
AuthorPosts
- You must be logged in to reply to this topic.