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

STORE Into txt-file with double quotes

Hi,

I'm trying to get an export job with STORE Into *.txt (tx) without double quotes.

[DTA1]: // F1

Load

Replace(Text([costvalue]), ',' , '.' )& ' þ'  as [F1]

From ....;

Store DTA1 Into Table1.txt (txt);

The export-table 'Table1' are without double quotes.

If i try to export the numeric 'costvalue'

[DTA2]: // F2

Load

Num([costvalue]),'#0,00' )& ' þ'  as [F2]

From ....;

Store DTA2 Into Table2.txt (txt);

The export-table 'Table2' are with double quotes.

T17-04-2014-14-41-12.jpg

How can I can get a txt-file without double quotes, using numeric 'costvalue'.

Any format specifications does't work.

I need the field 'costvalue' in the txt-file with a comma.

Regards

Andreas

1 Solution

Accepted Solutions
rbecher
MVP
MVP

Hi Andreas,

use a different delimiter than comma:

Store DTA2 Into Table2.txt (txt, delimiter is ';');


- Rlf

Astrato.io Head of R&D

View solution in original post

3 Replies
rbecher
MVP
MVP

Hi Andreas,

use a different delimiter than comma:

Store DTA2 Into Table2.txt (txt, delimiter is ';');


- Rlf

Astrato.io Head of R&D
Gysbert_Wassenaar

Specify another delimiter. If your field values contain a comma and you use a comma as field separator then the field values must be enclosed in quotes.

Store DTA2 Into Table2.txt (txt, delimiter is ';' );


talk is cheap, supply exceeds demand
qvwarning
Creator
Creator
Author

Hallo Ralf,

QlikView; that simple.

Beste Grüße

Andreas Warning