Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Distribution Graph

Hi All,

I have sales data that I would like to prepare a distribution graph from. So I can prepare a distribution graph for sales within certain constant bands by creating a calculated dimension.

However, is it possible to have say sales in the following bands 0-500, 5001-1000, 1001-1500 and then the last group being sales above 1500. My problem is how to create this last group i.e. no. of clients above a certain sales value as the last bar.

So far I can only create a distribution graph based on constant bands. How do I have a certain number of bands and the last band being all sales above the last band?

Hope this makes sense.

Thanks

H

1 Solution

Accepted Solutions
MarcoWedel

for example like this:

QlikCommunity_Message_140506_Pic1.JPG.jpg

QlikCommunity_Message_140506_Pic2.JPG.jpg

QlikCommunity_Message_140506_Pic3.JPG.jpg

=Aggr(If(Sum(sales)>vSalesBandMax,Dual(vSalesBandMax&'+',vSalesBandMax),Dual(Replace(Class(Sum(sales),500),'<= x <','-'),Class(Sum(sales),500))),client)

given this data:

QlikCommunity_Message_140506_Pic4.JPG.jpg

QlikCommunity_Message_140506_Pic5.JPG.jpg

tabSales:

LOAD Date(YearStart(Today())+Floor(Rand()*DayNumberOfYear(Today()))) as date,

     Chr(65+Floor(Rand()*2))&Chr(65+Floor(Rand()*26)) as client,

     Money(Ceil(Rand()*1000)) as sales

AutoGenerate 100;

hope this helps

regards

Marco

View solution in original post

7 Replies
ecolomer
Master II
Master II

See an example

MarcoWedel

you could use an if()/class() combination.

MarcoWedel

for example like this:

QlikCommunity_Message_140506_Pic1.JPG.jpg

QlikCommunity_Message_140506_Pic2.JPG.jpg

QlikCommunity_Message_140506_Pic3.JPG.jpg

=Aggr(If(Sum(sales)>vSalesBandMax,Dual(vSalesBandMax&'+',vSalesBandMax),Dual(Replace(Class(Sum(sales),500),'<= x <','-'),Class(Sum(sales),500))),client)

given this data:

QlikCommunity_Message_140506_Pic4.JPG.jpg

QlikCommunity_Message_140506_Pic5.JPG.jpg

tabSales:

LOAD Date(YearStart(Today())+Floor(Rand()*DayNumberOfYear(Today()))) as date,

     Chr(65+Floor(Rand()*2))&Chr(65+Floor(Rand()*26)) as client,

     Money(Ceil(Rand()*1000)) as sales

AutoGenerate 100;

hope this helps

regards

Marco

Not applicable
Author

Hi Marco,

This is brilliant, exactly what I was looking for. Just one last quick question.

I have another field in my data which which tells me the type of business i.e. "New Business" or "Existing". How would I adjust the calculated condition if I wanted to look at purely the "New Business?

Many Thanks

H

MarcoWedel

You could add a set expression like {$<fieldname={'New Business'}>}

in the sum function.

Please mark correct and/or helpful answers if your initial question is answered.

Hope this helps

Regards

Marco

Not applicable
Author

Thank you very very much, really appreciate your help.

MarcoWedel

You're welcome

Regards

Marco