Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have column a2:a20. Cells in that column have either "a", "f" or "x" which
letters are used in conditional formatting so that the cell turns blue, yellow or red. I need to count the numbers of "a" and "f" but not "x" in one formula in a21 In a1 I will be inserting a formula =IF(a21b1,"X","") b1 will have a manual entry - say 5 I mention that so you know that I am limited to a21 and one formula. Thanks |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() =SUM(COUNTIF(A2:A20,{"a","f"})) -- __________________________________ HTH Bob "Arceedee" wrote in message ... I have column a2:a20. Cells in that column have either "a", "f" or "x" which letters are used in conditional formatting so that the cell turns blue, yellow or red. I need to count the numbers of "a" and "f" but not "x" in one formula in a21 In a1 I will be inserting a formula =IF(a21b1,"X","") b1 will have a manual entry - say 5 I mention that so you know that I am limited to a21 and one formula. Thanks |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
In A21:
=COUNTIF(A2:A20,"a")+COUNTIF(A2:A20,"f") -- Gary''s Student - gsnu200809 "Arceedee" wrote: I have column a2:a20. Cells in that column have either "a", "f" or "x" which letters are used in conditional formatting so that the cell turns blue, yellow or red. I need to count the numbers of "a" and "f" but not "x" in one formula in a21 In a1 I will be inserting a formula =IF(a21b1,"X","") b1 will have a manual entry - say 5 I mention that so you know that I am limited to a21 and one formula. Thanks |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
formula in excel 2003 | Excel Discussion (Misc queries) | |||
Excel 2003 formula | Excel Worksheet Functions | |||
excel 2003 formula | Excel Discussion (Misc queries) | |||
Help with Formula (Excel 2003) | Excel Discussion (Misc queries) | |||
Need Help With a Excel 2003 Formula | Excel Worksheet Functions |