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: 
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,