-
FlexPro
- Zoom sur FlexPro
- Fonctionnalités & Options
- Domaines d’application
- Tous les avantages
- Nouveau dans FlexPro 2021
- Testez FlexPro gratuitement
- FlexPro View OEM Freeware
- Conseils d’achat
- Login
- Langue
- +49 6894 929600
- infoweisang.com
- Google Maps
- Produits
- News
- Support
- Société
- Emplois
- Contact
- Login
- Langue
- +49 6894 929600
- infoweisang.com
- Google Maps
Dezimaltrennzeichen beim Export in CSV
Accueil > Community > Automation and VBA > Dezimaltrennzeichen beim Export in CSV
- This topic has 2 replies, 2 voices, and was last updated 16 years ago by Stefan Palaveev.
-
AuthorPosts
-
October 24, 2008 at 8:32 am #12388Stefan PalaveevMember
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.
October 24, 2008 at 8:32 am #8071Stefan PalaveevMemberHallo,
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.
October 24, 2008 at 10:47 pm #8595Bernhard 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.