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

Comparing two aggr values and showing only if it the condition is met

I need to compare two aggr values, to see if one group (ANTS) is greater sales than any of the other groups( BEES, FLIES, MICE)

Dimension:

Date

Group

Stores

Metric (Load if Group = ANTS sales are greater than ANY GROUP)

MIN(aggr(sum({<GROUP={'ANTS'} >}SALES),Date,Group,Stores))  > MIN(aggr(sum(SALES),DATE,Group,Stores)

I'm using a chart and I'm getting an empty chart.

2 Replies
ahaahaaha
Partner - Master
Partner - Master

Hi Rolando,

May be like this

=RangeMax(aggr(sum({<GROUP={'ANTS'} >}SALES),Date,Group,Stores),

aggr(sum({<GROUP={'BEES'} >}SALES),Date,Group,Stores),

aggr(sum({<GROUP={'FLIES'} >}SALES),Date,Group,Stores),

aggr(sum({<GROUP={'MICE'} >}SALES),Date,Group,Stores))


Regards,

Andrey

Not applicable
Author

Andrey,

There is another dimension called Items and  I need to compare the lowest priced item in group ANTS to see if its greater than any of the lowest priced item in the other group.

Thanks in advance,

Rolando