Is it possible to create from Summarize option, a new table with the COUNT of a string field and the code of municipalities, in my case, like that:
+-------------------+--------------+
| id_municipalities | string_value |
+-------------------+--------------+
| 1 | A |
| 1 | A |
| 1 | C |
| 2 | A |
| 2 | B |
| 3 | D |
+-------------------+--------------+
And the result table, like that:
+-------------------+--------------------+---------------+
| id_municipalities | COUNT_string_Value | string_value |
+-------------------+--------------------+---------------+
| 1 | 2 | A |
| 2 | 1 | B |
| 3 | 1 | D |
+-------------------+--------------------+---------------+
Thanks in advance

