I am very new to PBI and DAX in general so I'm sorry if this is obvious but I would really appreciate any detailed explanations. I have a table with PersonID and Average Number of Hours per Week in a table that looks like this:
| PersonID | Average Number of Hours per Week |
| 100 | 40 |
| 201 | 35 |
| 302 | 32 |
| 443 | 40 |
| 512 | 40 |
| 643 | 32 |
and I would like to make a table/graph to show this data
| Average Number of Hours Per Week | Count of PersonID |
| 40 | 3 |
| 35 | 1 |
| 32 | 2 |