Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
I have the formula =10/counta(E6:E15 ).
This gives me 10/10 if E6 through E15 are filled. How do I make this formula: =10/counta( E6:E15 but exclude the cells from this range that equal any of the numbers in B5:B8) Example: =10/counta(E6:E15) would be 10/10 if E6:E15 are filled but if E12 = B5, excel would give me 10/9 because E12 would be excluded |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
This is an array formula, confirm it by pressing CTRL-SHIFT-ENTER:
=10/COUNTIF(E6:E15, "<" & B5:B8) Does that help? -- "Actually, I *am* a rocket scientist." -- JB (www.MadRocketScientist.com) Your feedback is appreciated, click YES if this post helped you. "excelguy" wrote: I have the formula =10/counta(E6:E15 ). This gives me 10/10 if E6 through E15 are filled. How do I make this formula: =10/counta( E6:E15 but exclude the cells from this range that equal any of the numbers in B5:B8) Example: =10/counta(E6:E15) would be 10/10 if E6:E15 are filled but if E12 = B5, excel would give me 10/9 because E12 would be excluded |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
no this doesn't work. how is an array formula suppose to operate?
"JBeaucaire" wrote: This is an array formula, confirm it by pressing CTRL-SHIFT-ENTER: =10/COUNTIF(E6:E15, "<" & B5:B8) Does that help? -- "Actually, I *am* a rocket scientist." -- JB (www.MadRocketScientist.com) Your feedback is appreciated, click YES if this post helped you. "excelguy" wrote: I have the formula =10/counta(E6:E15 ). This gives me 10/10 if E6 through E15 are filled. How do I make this formula: =10/counta( E6:E15 but exclude the cells from this range that equal any of the numbers in B5:B8) Example: =10/counta(E6:E15) would be 10/10 if E6:E15 are filled but if E12 = B5, excel would give me 10/9 because E12 would be excluded |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try this:
=10/(10-SUMPRODUCT(COUNTIF(E6:E15,B5:B7))) "excelguy" wrote: I have the formula =10/counta(E6:E15 ). This gives me 10/10 if E6 through E15 are filled. How do I make this formula: =10/counta( E6:E15 but exclude the cells from this range that equal any of the numbers in B5:B8) Example: =10/counta(E6:E15) would be 10/10 if E6:E15 are filled but if E12 = B5, excel would give me 10/9 because E12 would be excluded |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
counta formula | Excel Discussion (Misc queries) | |||
Formula for Counta | Excel Worksheet Functions | |||
How to look up a =COUNTA and =SUM formula from another sheet? | Excel Discussion (Misc queries) | |||
Counta formula | Excel Discussion (Misc queries) | |||
COUNTA Function not working =COUNTA(C3:C69,"NH") | Excel Worksheet Functions |