I am trying to learn working with charts. I have a list that holds a category with other stuff. The categories are something like ID, DEF, ETC. These are Choices and I know GroupBy does not like choices.
Several items in this list will be in their respective categories. I want to do a chart that will show me with a count of how many items are in ID or DEF or ETC whatever.
I can seem to get it right. I tried this for instance
GroupBy(AddColumns('TOPICS',"phases",Text(phase.Value),"count",Filter('TOPICS',"phase" = "ThisRecord.phase.Value")),"phases","count")
I get this set (forgot to attach). I can only assume that column "count" is giving [Table] because of the results of Filter, but if I do CountRows in there it does not like that either saying not supported for this connector. So I must be approaching this wrong.
Any advice would be appreciated.