Discussion Board for collaboration related to QlikView App Development.
I've built a pivot simialr to below and want to calcuate our share of the market. I've ried mutiple AGGR funcitons but cant seem to crack it...so requesting some expert help
In the AGGR column, I'm expecting the Competitor total in the first 3 cells (366,496), and then the Internal products total in the following 3 (43,538).
Any help will be appreciated.
Thanks, Jay
Try Sum(TOTAL <Ownership> Sales) obviously replacing Sales with your own field.
Hope this helps,
Jason
If I understood correctly, try this for the share:
=sum(Amount) / sum(total<Ownership> Amount)
Try Sum(TOTAL <Ownership> Sales) obviously replacing Sales with your own field.
Hope this helps,
Jason
Cheers Jason - Thats exactly what I wanted.