Summarising a column of numbers

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a column of numbers ranging from 1 to 365.

What I want to do is produce a table that says something like:

Days Count
365 1000
364 25
363 47
etc...

So in the example above the column of numbers has 1000 entries at 365 and 25
at 364

Is there any way of doing this?
 
On a new sheet, enter 365 In A2, 364 in A3, select both and drag-copy down
to 1

In B2, add

=COUNTIF(Sheet1!A:A,A2)

and copy down

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)
 
Bob Phillips said:
On a new sheet, enter 365 In A2, 364 in A3, select both and drag-copy down
to 1

In B2, add

=COUNTIF(Sheet1!A:A,A2)

and copy down

--
HTH

Bob Phillips

(replace somewhere in email address with gmail if mailing direct)




Thanks for that. It worked a treat.

Keith
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top