M Michael J. Malinsky Mar 4, 2004 #1 Assuming the range you are trying to count is from A1 to A25 use: =COUNTA(A1:A25) HTH
D dave b. Mar 4, 2004 #2 Office CP PROF - EXCEL Have a spreadsheet with columns where "Y" is entered if desired. I need to count the number of "y" instances in a column. Have worked the excel help but can't get it to work.
Office CP PROF - EXCEL Have a spreadsheet with columns where "Y" is entered if desired. I need to count the number of "y" instances in a column. Have worked the excel help but can't get it to work.
D Dave R. Mar 4, 2004 #3 =COUNTIF(A:A,"y") will count the whole column for Y. if you want just a range, try =COUNTIF(A1:A10,"y")
=COUNTIF(A:A,"y") will count the whole column for Y. if you want just a range, try =COUNTIF(A1:A10,"y")
D Dave R. Mar 4, 2004 #4 Michael I must point out that your count will count any instance of a non empty cell, where Dave B. only wants to count "y"s.
Michael I must point out that your count will count any instance of a non empty cell, where Dave B. only wants to count "y"s.