Skip to main content
I want to display the following age range in the Dashboard report

 

<20

 

>20-30

 

>30-40

 

<50
2 answers
  1. Aug 23, 2011, 4:00 AM
    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))))
0/9000