Count alpha value in a column.

  • Thread starter Thread starter Michael J. Malinsky
  • Start date Start date
M

Michael J. Malinsky

Assuming the range you are trying to count is from A1 to A25 use:

=COUNTA(A1:A25)

HTH
 
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.
 
=COUNTIF(A:A,"y")

will count the whole column for Y.
if you want just a range, try

=COUNTIF(A1:A10,"y")
 
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.
 

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