Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

QlikSense Distinct Count of Items that Makes 80% of Total Sales

Hi All,

Is there a way, with a formula, to get the number of items (count distinct of a field) that makes the 80% of sales (sum of sales field ordered top-down)?

For example, if I have:

Product CodeSales
Product 01500
Product 02200
Product 03300

500 (Product 01) + 300 (Product 03) = 800, that is the 80% of total Sales field, this means that result is 2 (count distinct of Product 01 and Product 03).

By searching in the community I've not found anything to get the result...

Many thanks in advance!

Regards,

Davide

1 Solution

Accepted Solutions
5 Replies
Anil_Babu_Samineni

May be this?

Count({<[Product Code] = {"=Avg(Sales) = 0.8"}>} DISTINCT [Product Code])

Please add me Anil_Babu_Samineni to interact faster when reply back. Speak low think High.

Before develop something, think If placed (The Right information | To the right people | At the Right time | In the Right place | With the Right context)
sunny_talwar

May be this

Count({<[Product Code] = {"=Aggr(RangeSum(Above(Sum(Sales), 0, RowNo())), ([Product Code], (=Sum({<[Product Code]>} Sales), Desc)))/Sum(TOTAL Sales) <= 0.8"}>} DISTINCT [Product Code])

Anonymous
Not applicable
Author

Hi,

I have found the solution by following both links (Pareto and ABC), Pareto for chart and ABC for table:

Many thanks!!

Regards,

Davide

Anonymous
Not applicable
Author

Hi All,

Thanks to all for the quick help!

Regards,

Davide