Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
t_moutault
Contributor III
Contributor III

Export fichier txt

Bonjour,

Est-il possible, via qlikview, d'exporter des données au format txt ou csv comme cela est possible au format qvd ?

Merci de vos réponses.


1 Solution

Accepted Solutions
maxgro
MVP
MVP

from qlik online help

store[ *fieldlist from] table into filename [ format-spec ];


format-spec ::= ( ( txt | qvd ) )

The format specification consists of a the text txt for text files, or the text qvd for qvd files. If the format specification is omitted, qvd is assumed.

View solution in original post

3 Replies
maxgro
MVP
MVP

from qlik online help

store[ *fieldlist from] table into filename [ format-spec ];


format-spec ::= ( ( txt | qvd ) )

The format specification consists of a the text txt for text files, or the text qvd for qvd files. If the format specification is omitted, qvd is assumed.

ashfaq_haseeb
Champion III
Champion III

Bonjour,

Ci-dessous le code fera le travail.

principal:

Charge * Inline

[

teneur

rouge

bleu

vert

];

MAGASIN principal dans Main.qvd (qvd); / / Pour stocker dans le fichier qvd

MAGASIN principal dans main.txt (txt); / / Pour stocker dans un fichier texte

MAGASIN principal dans Main.csv (txt); / / Pour stocker dans un fichier csv

Cordialement

ASHFAQ

t_moutault
Contributor III
Contributor III
Author


Le csv est identique au fichier texte.

Existe-t-il un moyen pour obtenir le séparateur ";" plutôt que "," ?