Monty
Monty

Reputation: 1311

Excel count of counts

If I have an Excel table as follow:

User1   1
User2 . 3
User3 . 2
User4 . 1
User5 . 1
User6 . 5
User7 . 2

I'm trying to graph the amount of similar values. In other words, I want to show how many "1s" there are in my list (3), how many "2s" (2) etc. Ideally in bar chart. For some reason I just can't figure it out today...

Upvotes: 1

Views: 53

Answers (2)

Lucas
Lucas

Reputation: 675

If you do not want to use PivotChart, you can do something like this:

enter image description here

  1. Create an auxiliary table with unique values (use remove duplicates)
  2. Create a bar chart with the Count values as a series with the Number values as the axis

Upvotes: 0

If your data is like this:

enter image description here

Then you can create a PivotChart:

Create a PivotChart

And just take field USERS into X axis, and Count field into VALUES section. Something like this:

enter image description here

This should work for you.

Upvotes: 1

Related Questions