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

 

<20

 

>20-30

 

>30-40

 

<50
2 Antworten
  1. 23. Aug. 2011, 04:00
    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