Skip to main content
Announcements
Live today at 11 AM ET. Get your questions about Qlik Connect answered, or just listen in. SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Set analysis filter

StatusCall
S1
S2
S3
N4
N5

Here i need to get output as maximum value with status as 'S'.  so i am using set analysis... with

=only({<call={"$(=max(call))"}>}call).... i will get maximum value as 5...  as out put..

StatusCall
S-
S-
S-
N-
N5

Now i tried =only({<Call={"$(=max(Call))"},Status={"S"}>}Call)....and   =only({<Status={"S"},Call={"$(=max(Call))"} >}Call)....but the my put is like below...

i didn't get any value..

StatusCall
S-
S-
S-
N-
N-

and one more issue i am facing, tried to supress the Null values...then the out put must be

StatusCall
S3

but it fails,,, i supressed every thing i need to do.. please telle me solution for the above suitation..

Thanks in advance...,

Ganesh.Avula.

1 Solution

Accepted Solutions
MayilVahanan

Hi

     See the first sheet, straight table.Hope it helps

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

6 Replies
giakoum
Partner - Master II
Partner - Master II

max( {<[Status]="S">} Call)

Not applicable
Author

max( {<[Status]="S">} Call) ---- i am getting out put as

StatusCall
S1
S2
S3
N-
N-

i need only S -- 3..  i tried only(max( {<[Status]="S">} Call))  but the output is all Null...

and give me the solution for filtering the null value...

MayilVahanan

Hi

     Try like this,

     =aggr(Max({<Status={'S'}>}Call),Status)

     Tick suppress null values

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Not applicable
Author

No it doesnt work...and supress already i given but not works..

Thanks,

ganesh.

MayilVahanan

Hi

     See the first sheet, straight table.Hope it helps

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Not applicable
Author

Thank U very much....