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: 
manojkulkarni
Partner - Specialist II
Partner - Specialist II

Get Single Value from column

HI Friends,

I have below data, where in I need to get single value from a given column. How can we do this ?

IDDateStatus
21577105-02-2016NEW
21577105-02-2016WIP
21577129-02-2016PENDING

Expected Out will be

21577105-02-2016WIP
21577129-02-2016PENDING
7 Replies
Kushal_Chawda

can you explain the logic to get the output?

manojkulkarni
Partner - Specialist II
Partner - Specialist II
Author

If you could see the data, on a same day particular task has different status NEW & WIP. I need to get only WIP status in my new table.

Date will have time stamp as well.

Kushal_Chawda

How many total status would be there in your data?

manojkulkarni
Partner - Specialist II
Partner - Specialist II
Author

will be 5-6 status

Not applicable

Hi Manoj,

Try like this

T1:

load * Inline [

ID, Date, Status

215771, 05-02-2016, NEW

215771, 05-02-2016, WIP

215771, 29-02-2016, PENDING

] Where Status<>'NEW';

may be hope ful for you.

Kushal_Chawda

So there will be combination of Status for two dates, so when to consider which status that you need to clerify

Not applicable

Hi,

if(Status<>'NEW',Status)

try this once.

Thanks

Tanushree Roy