Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Excel: count on cell value 2

Status
Not open for further replies.

jgurgen

Programmer
Mar 9, 2006
192
US
im trying to keep a count on how many cells have M, F or LOA

=IF(I7:EI7="M",COUNTIF(I7:EI7,"M"), IF(I7:EI7="F", COUNTIF(I7:EI7, "F")), IF(I7:EI7="LOA", COUNTIF(I7:EI7, "LOA")))
 
I am not sure what range you are trying to use, but maybe this will help

=COUNTIF(E7:I17,"loa")+COUNTIF(E7:I17,"f")+COUNTIF(E7:I17,"m")

 



hi,
[tt]
=countif($I$7:$E$I7,"M")+countif($I$7:$E$I7,"F")+countif($I$7:$E$I7,"LOA")
[/tt]


Skip,

[glasses] [red]Be Advised![/red] The only distinction between a bird with one wing and a bird with two, is merely...
a difference of A Pinion! [tongue]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top