Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
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.
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.
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
Le csv est identique au fichier texte.
Existe-t-il un moyen pour obtenir le séparateur ";" plutôt que "," ?