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

aggr() function help

I am new to using the aggr() function, but I think it can help me.

I am trying to come up with the sum(BO) but only for when XSTOCK=S and XSTOCK=N. I attatched a picture of what im working on.

Do you guys have any ideas for an expression that will work?

Thanks,

Chase

1 Solution

Accepted Solutions
giakoum
Partner - Master II
Partner - Master II

This sounds like set analysis not aggr.

sum({$<[XSTOCK]={"S, N"}>} [BO])

View solution in original post

4 Replies
matt_crowther
Luminary Alumni
Luminary Alumni

Should be:

=sum(if(XSTOCK='S' and XSTOCK='N',BO) based on your question but that won't work so try replacing 'and' with 'or'.

Hope that helps,

Matt - Visual Analytics Ltd

Qlikview Design Blog: http://QVDesign.wordpress.com

@QlikviewBI

giakoum
Partner - Master II
Partner - Master II

This sounds like set analysis not aggr.

sum({$<[XSTOCK]={"S, N"}>} [BO])

Not applicable
Author

somma ($ {<[XSTOCK] = {"S, N"}>} [BO])   or  Sum (if (XSTOCK = 'S' and XSTOCK = 'N', BO),.

You don't use the AGGR()

Not applicable
Author

Thanks a lot loannis! It works perfectly.

I'll have to look into set analysis a bit more..