Link to home
Start Free TrialLog in
Avatar of cpeters5
cpeters5

asked on

Countifs


I want to plot the distribution of column A having 14 numbers by counting into buckets in column B
ColA          ColB
 421,006        400,000
 432,070        410,000
 436,415        420,000
 438,019        430,000
 443,280        440,000
 443,375        450,000
 446,952        460,000
 447,806        470,000
 449,127       
 449,967       
 450,260       
 463,056       
 463,435       
 463,767       



What is wrong with this formula?

=countifs(A1:A14,>B1,A1:A14,<B2)
Avatar of nutsch
nutsch
Flag of United States of America image

try

=countifs(A1:A14,">" & B1,A1:A14,"<" & B2)
ASKER CERTIFIED SOLUTION
Avatar of barry houdini
barry houdini
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Another option is to run a pivot table with your numbers as row fields, grouped by 10000, and your numbers as data field with a count.

T