Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
rkpatelqlikview
Creator III
Creator III

How can take only one value from multiple values with in one cell

Hi Qlik,

Anyone please help on this.

There is a multiple values in one cell, Here i need to consider only first one. Please find the excel like Final Column.

1 Solution

Accepted Solutions
jaumecf23
Creator III
Creator III

Try this:

Table:

LOAD Store,

     codes,

     trim(SubField(codes,',',1)) as Final

FROM

[Final.xlsx]

(ooxml, embedded labels, table is Sheet1);

View solution in original post

2 Replies
jaumecf23
Creator III
Creator III

Try this:

Table:

LOAD Store,

     codes,

     trim(SubField(codes,',',1)) as Final

FROM

[Final.xlsx]

(ooxml, embedded labels, table is Sheet1);

rkpatelqlikview
Creator III
Creator III
Author

Thanks for your great help Jaume,