Forum Discussion
thrillhouse
4 years agoHelper I
Using Range Bins as Legend Categories
Hello, I am trying to use ranges that I've created from a nother calculated field. I am taking a distinct count of certain categories and then I've created a range out of this distinct count: M...
TheoC
4 years agoCommunity Champion
Hi thrillhouse
Can you create a calculated column as follows:
Column =
SWITCH (
TRUE () ,
[Main Categories Count] < 3 , "0-2" ,
[Main Categories Count] < 5 , "2-4" ,
"5+" )
Hope this helps.
Theo