Adding up a column

R

Ronda

I have a couple of columns on my spreadsheet that have a "Y" or "N" answer.
I need to add up the number of "Y"s and multiply it by 33. What would be the
formula to this?
 
P

Pete_UK

Something like:

=COUNTIF(A:A,"Y")*33 + COUNTIF(C:C,"Y")*33

assuming columns A and C contain Y/N.

Hope this helps.

Pete
 
Top