Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I am trying to figure out the if formula. I need a formula that will look at
cells d10 through ae10, and if any are 20%< than cell AF10 return a true and if no cell is then false. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
=countif(d10:ae10,"<"&0.2*af10)
Peco Worker wrote: I am trying to figure out the if formula. I need a formula that will look at cells d10 through ae10, and if any are 20%< than cell AF10 return a true and if no cell is then false. -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
On 18 Mar, 20:19, Peco Worker
wrote: I am trying to figure out the if formula. I need a formula that will look at cells d10 through ae10, and if any are 20%< than cell AF10 return a true and if no cell is then false. You can use the following: =IF((D10:AE10)<AF10*20%,1,0) BUT, you must enter it as an array, i.e. with ctrl+shift+enter |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
=countif(d10:ae10,"<"&0.2*af10)
displays the count. =(countif(d10:ae10,"<"&0.2*af10))0 with return true or false Dave Peterson wrote: =countif(d10:ae10,"<"&0.2*af10) Peco Worker wrote: I am trying to figure out the if formula. I need a formula that will look at cells d10 through ae10, and if any are 20%< than cell AF10 return a true and if no cell is then false. -- Dave Peterson -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Regression Leverage Formula (Jerry W. Lewis or Mike Middleton)already have DFITS formula | Excel Worksheet Functions | |||
Excel 2002 Formula: Urgent Conditional Formula Required Right Away - if possible | Excel Discussion (Misc queries) | |||
Formula expected end of statement error, typing formula into cell as part of VBA macro | Excel Programming | |||
Cell doesn't show formula result - it shows formula (CTRL + ' doe. | Excel Worksheet Functions | |||
Commenting custom formula fields/formula on formula editor | Excel Programming |