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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Show only data without duplicate

Employee               WorkID      Status

Adam                            1          Missing

Alex                              2          Approved

LIm                               3          Pending

Raja                              4          Pending

Singh                            5           Approved   

Adam                            6          Missing

Alex                              7          Approved

Lim                               8          Approved

What formula to use. If I want to produce below result. I dont want employee that have more than 1 id:

Employee          WorkID          Status

Lim                      3                    Pending

Raja                     4                    Pending

Singh                    5                   Approved

TQ,

10 Replies
SunilChauhan
Champion II
Champion II

in dimension  take Employee

and in expression:

if(Count( distinct  WorkID  )=1,Status)

expression --> if(Count( distinct  WorkID  )=1,Count( distinct  WorkID  ))

hope this helps

Sunil Chauhan