I have a continuous Asset Size field that isn't exactly logarithmic in distribution, a little more rational. As such, I can't use a constant bin size to categorize them into easily filterable categories. Is there a way to easily create different bin sizes for these different asset categories? Say, 0-50 million, 51-200 million, etc.
5 réponses
@Emma Fan You can create a bin calculation for any bin sizes you want
IF [Metric]<=50M THEN '0-50 million'
ELSEIF [Metric]<=200M THEN '50-200 million'
...
END