I have run some stats on a dataset where features fall into a specific polygon and have the count and the category.
I now need a list that I can bring together in a single concatenated value that is {count1, cat1, count2, cat2, count3, cat3}
The problem is that the number of the categories varies from polygon to polygon.
The approach so far is statistics calculator => list builder => list concatenator (using category) => list concatenator (using count) which gives me two lists, comma separated but need to being them together.
with the result
Does anyone have any suggestions on how to bring together?