Jun 8, 2006 #1 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")))
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")))
Jun 8, 2006 1 #2 Lilliabeth Technical User Jan 26, 2005 1,190 US 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") Upvote 0 Downvote
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")
Jun 8, 2006 1 #3 S SkipVought Programmer Dec 4, 2001 47,492 US hi, [tt] =countif($I$7:$E$I7,"M")+countif($I$7:$E$I7,"F")+countif($I$7:$E$I7,"LOA") [/tt] Skip, [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! Upvote 0 Downvote
hi, [tt] =countif($I$7:$E$I7,"M")+countif($I$7:$E$I7,"F")+countif($I$7:$E$I7,"LOA") [/tt] Skip, [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!
Jun 8, 2006 Thread starter #4 jgurgen Programmer Mar 9, 2006 192 US worked but the range was i7 to ei7 Upvote 0 Downvote