Jump to content

Recommended Posts

Posted
Does anyone have any idea of how to count the number of F's and M's in a single column then have a Girl and Boy key that relates to that column????? PLEASE HELP !
Posted
You can do this is Access with a duplicates query but I'm guessing you want Excel to do it and I'm not entirely sure if its possible (at least I've not been able to do it in the ten minutes I've had so far) I'll keep trying and let you know hopefully without making the 2010 spreadsheet incompatible with 2003
Posted (edited)

You need to use DCOUNT in Excel. One field to count F, one to count F.

 

Or =COUNTIF(B85:AA85,"=F") counts the "F"s in row 85, between columns B and AA.

Edited by Andrew_C
Late edit
Posted (edited)

It can sort of be done. Take a look at the file below. Uses an IF statement to sort boy or girl and SUM for the key

 

Sort M and F.xls

 

Above is much easier. I missed that one :doh:

Edited by cromertech
must do better :-)
Posted

COUNTIF will do this, e.g.

 

for Male:
   =COUNTIF(A1:A100,"M")

for Female:
   =COUNTIF(A1:A100,"F")

 

 

you'll need to change the range accordingly.

Posted

As people have said, COUNTIF() will do the counting.

 

However could the OP explain the latter part of the query - having a Girl and Boy key that relates to the column?

 

Peter

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...