Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Set analysis nested within a set analsysis expression

Hi All

I am having issues with this set analysis expression. The expression has 2 conditions. the second conditions is another set analysis expression. This expression works on its own, but not within this expression. I think the porble lies in the way i am trying to input the set but i just can figure out the right way.

Could somebody help?

Min({<[Claimant Status Description]={'Settled'}, '$(Max({<[Claimant Status Description]={'Open'}>} [Claim Transaction Done Date]))'  >} [Claim Transaction Done Date]) 

I look forward to your replies

James

1 Reply
swuehl
MVP
MVP

I believe you need to specify a field you want to limit the max(...) with, maybe the [Claim Transaction Done Date] field?

Try

Min( {<

[Claimant Status Description]={'Settled'},

[Claim Transaction Done Date]= {'$(=Max({<[Claimant Status Description]={'Open'}>} [Claim Transaction Done Date]))'}

  >} [Claim Transaction Done Date]) 

But I am not sure if this is right, maybe you could describe what you want to achieve?