Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
raadwiptec
Creator II
Creator II

split

I have a source where i need to split the file.. for ex

invoice

invoice rate

invoice type

etc...

if the invoice type is PRS then Load

if the invoice type is LSS then Load..

I need to split the data and further put the values in 2 columsn

3 Replies
sarvesh
Creator III
Creator III

Please refer below mentioned link:

Splitting a field into multiple fields

Regard's

Sarvesh Srivastava

ecolomer
Master II
Master II

Hi,

You can load all records in the first round.

TEMP:

LOAD *

SQL Select  ....

PRS:

LOAD *

resident TEMP where type = 'PRS';

STORE PRS.qvd (qvd);

LSS:

LOAD *

resident TEMP ehere type='LSS';

STORE LSS.qvd (qvd);

DROP TABLE TEMP;

And you have 2 files (PRS.qvd and LSS.qvd)

Anil_Babu_Samineni

Or

TEMP:

LOAD *, 'PRS' as Flag

SQL Select  ....

TEMP:

LOAD *, 'LSS' as Flag

SQL Select  ....

Then use Field called Flag where in Front end or Background. This will very helpful instead of split. This can used and helps for better in condition(May be set operator)

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful