Hi, I have a table that is like this
| Year | Result |
2009 | Pass |
| 2010 | Pass |
| 2009 | Fail |
| 2010 | Fail |
| 2009 | Pass |
| 2009 | Pass |
I wanted the result to be like this
| Year | Total | Pass | Fail |
| 2009 | 4 | 3 | 1 |
| 2010 | 2 | 1 | 1 |
Where:
Total is the total count of rows per year
Pass is the total count of Pass
Fail is the total count of Fail
I tried using the summarize tool and filter but I am not getting the result I wanted.
Hope someone can point me to the right direction and tool to use.
Thank you!