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: 
Not applicable

Using two Arguments in Set Analysis

Hi All

=Aggr(Only({$<[Claimant State]={'Closed'}[Is Latest Ref Seq]=>}[Claim Transaction Done Date]),[Claimant Number])

This is my Formula which works fine however the formula only shows details that I need when Claimant State = Closed I also need it to show the details when claimant state = Reclosed. I tried The following

=Aggr(Only({$<[Claimant State]={'Closed'},[Claimant State]={'ReClosed'}, [Is Latest Ref Seq]=>}[Claim Transaction Done Date]),[Claimant Number])

This doesn't quite work as I believe what I have done is told it to only show what I want if = Closed and Reclosed were I need it to be an OR.

Hope this makes sense

Thanks for any response in advance

1 Solution

Accepted Solutions
Not applicable
Author

Try:

[Claimant State]={'Closed','ReClosed'}

Regards,

Gordon

View solution in original post

2 Replies
Not applicable
Author

Try:

[Claimant State]={'Closed','ReClosed'}

Regards,

Gordon

Not applicable
Author

That is Perfect thanks.