Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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

Labels (1)
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
Specialist
Specialist

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..