1
votes

I have a form that fills in a Google Spreadsheet. One of the columns is a gender drop down with "Male" or "Female" options.

How do I get a total of the # of Males? Is there a =Sum() function that I can say Male =1 and Female =0 or something like that?

1
This does not sound like a programming question. Perhaps webapps.stackexchange.com? - Matt Ball
moderator please move question to webapps - MetaEd
This question is probably better fitter at webapps indeed - Henrique G. Abreu

1 Answers

2
votes

Yes, there's a formula for that. It called COUNTIF e.g.

=COUNTIF(B:B; "Male")