Excel help

Soldato
Joined
1 Mar 2003
Posts
5,508
Location
Cotham, Bristol
I'm rubbish at Excel, I basically have a list of names of people who can attend an event, marked with a Y or an N depending upon their availability. At the bottom of the column I want to tot up the number of Y's so something like

if(cell=="Y") count++

Is this possible in excel? If so how?
 
Hidden column to the right of your table with =IF(A1 == 'Y', 1, 0)

Then sum the column at the bottom.

Edit: Robbie G above has a more eloquent solution.
 
Back
Top Bottom