Hi,
I am struggling to get a histogram on billings by individual customers over a certain period, say one year. At the end of the day I'd like to have a histogram to display how many customer we have in each bin. The four bin sizes I'd like to have are:
<50.000$
50.000$ ... 100.000$
100.000$ .... 250.000$
>250.000$
Data does look like this:
Year | Month | Customer | CustomerID | OrderID | Billings |
2015 | 3 | A | 10001 | 20001 | 4.000$ |
2015 | 3 | B | 10002 | 20002 | 20.000$ |
2015 | 3 | C | 10003 | 20003 | 20.000$ |
2015 | 4 | B | 10002 | 20004 | 90.000$ |
2015 | 5 | C | 10003 | 20005 | 3.000$ |
2015 | 5 | A | 10001 | 20006 | 120.000$ |
2015 | 6 | D | 10004 | 20007 | 280.000$ |
2015 | 6 | A | 10001 | 20008 | 10.000$ |
2015 | 7 | E | 10005 | 20009 | 7.000$ |
2015 | 7 | B | 10002 | 20010 | 5.000$ |
2015 | 8 | F | 10006 | 20011 | 45.000$ |
2015 | 9 | E | 10005 | 20012 | 30.000$ |
I hope there is anybody out there who can support me. Thank you.