Summing data in columns

  • Thread starter Thread starter ElGordo
  • Start date Start date
E

ElGordo

I have data in letter form: M=male and F= female. I have tried SUMIF but cant
get a total of aal the "M"s or"F"s in a column.What am I doing wrong as the
help pages dont ma ke it clear?
 
Use Countif instead of Sumif.

Hope that this is what you are looking for…

Assume that you are having the Gender details in A Column.

A COL
M
F
M
F
M
M
F
M

=COUNTIF(A:A,"M")
=COUNTIF(A:A,"F")

If this post helps, Click Yes!
 

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