G Guest Feb 2, 2006 #1 In a column I have a list of numbers (1-5) and I want to know how many 1s, 2s, 3s, etc. What is the formula?
In a column I have a list of numbers (1-5) and I want to know how many 1s, 2s, 3s, etc. What is the formula?
G Guest Feb 2, 2006 #2 Try something like this: For numbers in A1:A10 B1: =COUNTIF(A1:A10,1) (Returns the count of 1's) or C1: (a number between 1 and 5) B1: =COUNTIF(A1:A10,C1) (Returns to the count of items that match the value in C1) Does that help? *********** Regards, Ron XL2002, WinXP-Pro
Try something like this: For numbers in A1:A10 B1: =COUNTIF(A1:A10,1) (Returns the count of 1's) or C1: (a number between 1 and 5) B1: =COUNTIF(A1:A10,C1) (Returns to the count of items that match the value in C1) Does that help? *********** Regards, Ron XL2002, WinXP-Pro
A Anne Troy Feb 2, 2006 #3 =COUNTIF(C4:C7,"=1") ************ Hope it helps! Anne Troy www.OfficeArticles.com
G Gord Dibben Feb 2, 2006 #4 One more methos. Assuming your digits are in A1:A100 In B1:B5 enter digits 1 through 5. Select C1:C5 In activecell C1 enter =FREQUENCY(A1:A100,B1:B5) and hit CTRL + SHIFT + ENTER Excel will place curly brackets around the formula because it is an ARRAY formula. The frequency of each number in B1:B1 will be returned to C1:C5 Gord Dibben MS Excel MVP
One more methos. Assuming your digits are in A1:A100 In B1:B5 enter digits 1 through 5. Select C1:C5 In activecell C1 enter =FREQUENCY(A1:A100,B1:B5) and hit CTRL + SHIFT + ENTER Excel will place curly brackets around the formula because it is an ARRAY formula. The frequency of each number in B1:B1 will be returned to C1:C5 Gord Dibben MS Excel MVP
A Anne Troy Feb 2, 2006 #5 Thanks, Ron. I seem constantly to be learning here... ************ Hope it helps! Anne Troy www.OfficeArticles.com
Thanks, Ron. I seem constantly to be learning here... ************ Hope it helps! Anne Troy www.OfficeArticles.com
G Guest Feb 2, 2006 #6 Check out Tools > DataAnalysis > Histogram....... Vaya con Dios, Chuck, CABGx3
G Guest Feb 2, 2006 #7 I seem constantly to be learning here...<< I think every one of us feels the same way. I know I do. *********** Regards, Ron XL2002, WinXP-Pro
I seem constantly to be learning here...<< I think every one of us feels the same way. I know I do. *********** Regards, Ron XL2002, WinXP-Pro