Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to create Pipe Seperate text file

Hi Forum/Friends,

As we are aware that we can create comm(,) seperate text file by writting the following script in Script Editor:-

Store TABRES into D:\testfilefolder\txtfile.txt(txt);

Note:- Assum that "TABRES" is resident table having 3 columns.

But, I want to create pipe(|) seperate text file. Can anybody show me how to achieve the above requirment?.

Advance Thanks

SD

1 Solution

Accepted Solutions
phaneendra_kunc
Partner - Specialist III
Partner - Specialist III

use this...

Store TABRES into D:\testfilefolder\txtfile.txt (txt, delimiter is '|')

View solution in original post

4 Replies
sushil353
Master II
Master II

Hi,

Try this one:

STORE Table into t.csv(delimiter is '|');

hth

sushil

phaneendra_kunc
Partner - Specialist III
Partner - Specialist III

use this...

Store TABRES into D:\testfilefolder\txtfile.txt (txt, delimiter is '|')

Not applicable
Author

Hi Shan,

Use the following syntax to create Pipe Seperated Text File:-

STORE  Population_State_Wise into D:\QlikView\JS API\abc.txt

(delimiter is '|', txt);

Not applicable
Author

Hi Phaneendra/Friends,

Thanks to all for quick response

Thanks & Regards

SD