I am creating pivot tables to summarize survey response data in an excel file.
Part of the data shows answers to "How important is x to you?" questions:
| Subject A | Subject B | Subject C | Subject D | Subject E |
-------------------------------------------------------------
| Very | Not at all| A little | Very | A little |
| Not at all| Not at all| Very | N/A | Very |
| Not at all| Not at all| Very | Very | N/A |
| Very | Not at all| Not at all| Very | A little |
| N/A | Not at all| Very | Very | A little |
In my pivot table, I would like to summarize the number of occurrences for each answer per subject respectively:
| Subject A | Subject B | Subject C | Subject D | Subject E |
--------------------------------------------------------------------------
| Very | 2 | 0 | 3 | 4 | 1 |
| A little | 0 | 0 | 1 | 0 | 3 |
| Not at all | 2 | 5 | 1 | 0 | 0 |
| N/A | 1 | 0 | 0 | 1 | 1 |
I have spent some time trying to find a way to do this, but to no avail. Google is not being particularly helpful either. Is this because pivot tables simply do not support this kind of summary, or do I simply need more coffee? Any help would be appreciated.