I have a dataset that looks like
+------------+-----------------------------+
| user_name | role |
+------------+-----------------------------+
| User A | Admin, System |
| User B | Editor, Power User, System |
+------------+-----------------------------+
I would like to calculate the total number of each column (A, B) as a percentage of the total rows, to look like
+-------+-----+-----+-------+
| Month | A | B | TOTAL |
+-------+-----+-----+-------+
| Jan | 90% | 10% | 100% |
| Feb | 90% | 10% | 100% |
| Mar | 75% | 25% | 100% |
+-------+-----+-----+-------+
I tried using a table and a can not matrix to work:

source
share