Hello all,
I have an issue where I have data that I need to group out. It is in a table like the following
I need to produce a count of how many people fall in each range, with that range as my left side. I can produce this
But I need it to look like this:
Can anyone help?
Thanks in advance.
----------------------------------------
TWljcm8kb2Z0J3MgIzEgRmFuIQ==
I have an issue where I have data that I need to group out. It is in a table like the following
Code:
Name Income
---- ------
Phil 100
Mary 500
Bill 450
Will 45
I need to produce a count of how many people fall in each range, with that range as my left side. I can produce this
Code:
0-49 50-99 100-499 500-1000 Other
----------- ----------- ----------- ----------- -----------
1 0 2 1 0
But I need it to look like this:
Code:
bracket number
-------- -----------
0-49 1
50-99 0
100-499 2
500-1000 1
Other 0
Can anyone help?
Thanks in advance.
----------------------------------------
TWljcm8kb2Z0J3MgIzEgRmFuIQ==