Hello,
I am trying to create a density column based on another column. Specifically, if the count of a current item exceeds a certain threshold, then the corresponding value in the density column will be designated as "high"; otherwise, it will be designated as "low".
For example,
given col1, col2 (Density) , threshold = 2
| Col 1 | Col 2 (Density) |
| A | High |
| A | High |
| A | High |
| B | Low |
| C | Low |
Can I use summarize in formula tool to get the count?
Thanks