Hello,
This first table is my original data which contains several columns with binary data 'Yes' or/and 'No'.
| Col1 | Col2 | Col3 |
| Yes | Yes | No |
| Yes | Yes | No |
| No | Yes | No |
| No | Yes | No |
| Yes | Yes | No |
| Yes | Yes | No |
| Yes | Yes | No |
| Yes | Yes | No |
| No | Yes | No |
| Yes | Yes | No |
The second one is the output table that I need.
| | Yes | No | Total | Score |
| Col1 | 7 | 3 | 10 | 0.7 |
| Col2 | 10 | 0 | 10 | 1 |
| Col3 | 0 | 10 | 10 | 0 |
I tried Summarize tool to get the count of 'Yes' and 'No' for each column. However, if I have 20 columns, then 20 summarized tools need to be used which I think is too complex.
Please help me if you know a better way. Any help is appreciated!