Forum Discussion

NicoleCordeiro1's avatar
NicoleCordeiro1
Qrew Cadet
5 years ago

Pie Chart Report with similar field values

(example)

So if this is my table (turned pie chart)
Color # of shirts
red 10
pale red 3
blue 5
black 7

But in the pie chart, I want Red and Pale red to both be grouped as "red" so the value would be 13 but in a table report, I still want to report them separately in a field. 

Is there a way to do this?

Thanks!



------------------------------
Nicole
------------------------------

1 Reply

  • No Problem,
    Just make a new formula text field called [Pie Chart Color]

    Case([Color],
    "pale red", "red",
    [Color])

    but on a more general situation when you have more values it would look like this


    Case([Color],
    "pale red", "red",
    "pink","red",
    "lime", "green",
    "emerald", "green"
    [Color])

    ------------------------------
    Mark Shnier (YQC)
    Quick Base Solution Provider
    Your Quick Base Coach
    http://QuickBaseCoach.com
    mark.shnier@gmail.com
    ------------------------------