Home |
Search |
Today's Posts |
#1
![]() |
|||
|
|||
![]()
=SUMIF(Q2="John","+",E2<=1000,E2*5%,N2+R2+S2)
In this formula, I am tying to get the cell to do the following... If sales rep name Q2 is John and the sale is greater than $1000 we should take the total sale amount E2 and multiply by 5% then add it to the N2+R2+S2 cells to total commission due. I am still trying to muddle through this. Logic failing me at midnight. Thanks again for any help. |
#2
![]() |
|||
|
|||
![]()
Hi Ken
SUMIF can't take multiple criteria and for a single cell you don't need SUMIF anyway ... just use an IF statement =IF(AND(Q2="John",E2<=1000),E2*5%+N2+R2+S2,0) Cheers JulieD "Ken M." wrote in message ... =SUMIF(Q2="John","+",E2<=1000,E2*5%,N2+R2+S2) In this formula, I am tying to get the cell to do the following... If sales rep name Q2 is John and the sale is greater than $1000 we should take the total sale amount E2 and multiply by 5% then add it to the N2+R2+S2 cells to total commission due. I am still trying to muddle through this. Logic failing me at midnight. Thanks again for any help. |
#3
![]() |
|||
|
|||
![]()
Hi
=IF(AND(Q2="John",E21000),0.05*E2+SUM(N2,R2:S2)," whatever") Arvi Laanemets "Ken M." wrote in message ... =SUMIF(Q2="John","+",E2<=1000,E2*5%,N2+R2+S2) In this formula, I am tying to get the cell to do the following... If sales rep name Q2 is John and the sale is greater than $1000 we should take the total sale amount E2 and multiply by 5% then add it to the N2+R2+S2 cells to total commission due. I am still trying to muddle through this. Logic failing me at midnight. Thanks again for any help. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Match / Vlookup within an Array formula | Excel Discussion (Misc queries) | |||
revert formula insertion to old method | Setting up and Configuration of Excel | |||
Relative Indirect Formula Referencing? | Excel Worksheet Functions | |||
Help with macro formula and variable | Excel Worksheet Functions | |||
Cell doesn't show formula result - it shows formula (CTRL + ' doe. | Excel Worksheet Functions |