Calculate totals in a range of text

L

lliimu

What function and formula would I use to calculate the
total of "M" (male) and "F" (female)listed in the same
column? I would like to have each total listed separately.

thks
 
R

Ron Rosenfeld

What function and formula would I use to calculate the
total of "M" (male) and "F" (female)listed in the same
column? I would like to have each total listed separately.

thks

=COUNTIF(rng,"M")
=COUNTIF(rng,"F")


--ron
 
G

Guest

You could use count.if if you want to know the number of "M" and "F"; or you could use sum.if if you want to sum values according to the condition

AO
 

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

Top