How do i total cells in excel that contain specific text?

Z

Zurbs17

I have a column in which each cell contains either "W" or "L"
What formula do I use to total cells that contain either of these two
characters?

thanks

jb
 
R

Ron Coderre

For W or L in Col_A

To count W's:
=COUNTIF(A:A,"W")

Does that help?

***********
Regards,
Ron

XL2002, WinXP-Pro
 
G

Gilles Desjardins

Create a formula for each L and W as follows.
There are other ways like Conditional sum wizard, etc.

=COUNTIF(D1:D7,"W")

Gilles
 
Top