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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
jerry_ile
Contributor III
Contributor III

Buckets

HI,

I need to create some price buckets in Qlik Sense

taking this format of example data    

SKURRPSum([Sold GBP])Sum([Sold Qty])
GAKJ06A01330£3,510.00233
ML3498A01830£1,984.17233
YD00080801840£9,300.00233
YK00001818150£10,150.00232
YT00071202725£4,384.00231
YT00083812530£4,186.38231

Would like to bucket into groups of MD percentages

70%+

50-69% MD

30-49% MD

10-29% MD

Full Price

I tried some nested ifs and read about the Class function but not sure how to use as I'm comparing (Sold GBP / Sold Qty) with the RRP

1 Solution

Accepted Solutions
MK9885
Master II
Master II

Correct me if I'm wrong but I hope this is what you are looking for?

Note: I removed Currency Symbol from GBP so that I can create a new field ASP.

You can use Subfield too to remove pound symbol.

2018-07-31_142843.png

View solution in original post

4 Replies
MK9885
Master II
Master II

whats the definition behind these

70%+

50-69% MD

30-49% MD

10-29% MD

Full Price

how to determine if it is 70%+ and other %'s.... ? comparing it with what value?

jerry_ile
Contributor III
Contributor III
Author

Hi Shahbaz

thanks for the help


(Sold GBP / Sold Qty)
Get the Average Sale Price (ASP) e.g for

SKU GAKJ06A013   £3,510 / 233 = 15.06

then

(RRP - ASP) /RRP

30 - 15.06 / 30 = 0.498 so 49.8%

Which is the 30-49% MD bucket

MK9885
Master II
Master II

Correct me if I'm wrong but I hope this is what you are looking for?

Note: I removed Currency Symbol from GBP so that I can create a new field ASP.

You can use Subfield too to remove pound symbol.

2018-07-31_142843.png

jerry_ile
Contributor III
Contributor III
Author

Thanks for the help Shahbaz, that's perfect