Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
akpofureenughwu
Creator III
Creator III

Data Format : CSV

Good day everyone, I need tips on how I can manipulate data from CSV file. Please see the attached file for details.

I can load the file into qlikview data editor but how can I separate the key data fields so that that will stand alone or appear like this:

id

room

start date

end date

not id/room/ start date/ end date

Thanks

1 Solution

Accepted Solutions
Peter_Cammaert
Partner - Champion III
Partner - Champion III

Or even shorter:

TableName:

LOAD *

FROM [.\Booking.txt] (txt, codepage is 1252, embedded labels, delimiter is '|', msq);

Best,

Peter

View solution in original post

6 Replies
Not applicable

Do you have a QVW to provide with?

avinashelite

Go to Edit Script> Table Files>choose the file> select CSV > chose the delimiter > if its not in the list >select the custom and the choose the delimiter as | pipe and then click on finish

MK_QSL
MVP
MVP

TableName:

LOAD id,

     room,

     [start date],

     [end date],

     [request id]

FROM

[..\Downloads\Booking.txt]

(txt, codepage is 1252, embedded labels, delimiter is '|', msq);

akpofureenughwu
Creator III
Creator III
Author

Yeah, Try this

Peter_Cammaert
Partner - Champion III
Partner - Champion III

Or even shorter:

TableName:

LOAD *

FROM [.\Booking.txt] (txt, codepage is 1252, embedded labels, delimiter is '|', msq);

Best,

Peter

akpofureenughwu
Creator III
Creator III
Author

Thanks Everyone..