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

Load delimiter file into Qlikview

Please help me by loading the attached sample file into qlikview.

Delimiter is Ð|Ð

1 Solution

Accepted Solutions
shilpan
Partner Ambassador
Partner Ambassador

See the script attached

View solution in original post

3 Replies
ychaitanya
Creator III
Creator III

Can you try replacing the Ð|Ð sequence with ',' and use comma delimited file load, as the above substring is difficult for Qlik to read .


Thanks

CY

shilpan
Partner Ambassador
Partner Ambassador

See the script attached

MarcoWedel

maybe like this?

LOAD TextBetween(@1,'Ð','Ð') as ROW_ID,

    TextBetween(@2,'Ð','Ð') as CREATED,

    TextBetween(@3,'Ð','Ð') as CREATED_BY

FROM (txt, codepage is 1252, no labels, delimiter is '|', msq, filters(Remove(Row, Pos(Top, 1))));

hope this helps

regards

Marco