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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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
Labels (1)
7 Replies
Kushal_Chawda
MVP
MVP

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
MVP
MVP

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
MVP
MVP

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