Topic
Dezimaltrennzeichen beim Export in CSV
Page d'accueil ' Communauté ' Automation et VBA ' Séparateur de décimales lors de l'exportation en CSV
- Ce sujet contient 2 réponses, 2 participants et a été mis à jour pour la dernière fois par Stefan Palaveev, le il y a 16 années et 7 mois.
-
AuteurMessages
-
24.10.2008 à 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 à 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 à 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.
-
AuteurMessages
- Vous devez être connecté pour répondre à ce sujet.