
<20
>20-30
>30-40
<50
2 answers
The easiest way to do that would be to create a custom Formula Field and refernce that in your DB Chart.
The formula would look something like this:
IF(Age > 50, "50+",
IF(Age > 40, "40-50",
IF(Age > 30, "30-40",
IF(Age > 20, "20-30",
"< 20))))