birdland33

New Member
Joined
Jan 17, 2019
Messages
2
Hi,

I'm trying to get a return in (H5) based on Column E multiplying by Column Q (100%, 130%, 150%). When I type the formulas individually they work, as IF(AND(E5>=O5,E5<p5,g5*q5) and="" so="" on="" for="" each="" of="" the="" other="" two="" returns.="" however,="" when="" i="" try="" to="" combine="" them="" get="" return="" #value !

I know it is probably something very simple that I am overlooking. The formula that I am using is:

=IF(AND(E5>=O5,E5
=O6,E5
=O7),G5*Q7,0))


Results (E5) Potential (G5) AchievedMultipliers
$ 25,500,000.00 $ 2,808.00#value !Sales (O5) 25,500,000.00 (P5) 28,049,999.00100%
(O6) 28,050,000.00 (P6) 30,854,999.00130%
(O7) 30,855,000.00150%

<tbody>
</tbody>


Any help on this is greatly appreciated.
Thanks!</p6,g5*q6),if(and(e5></p5),g5*q5),if(and(e5></p5,g5*q5)>
 

Excel Facts

Copy a format multiple times
Select a formatted range. Double-click the Format Painter (left side of Home tab). You can paste formatting multiple times. Esc to stop
You need another IF in the statement.

Try this: =IF(AND(E5>=O5,E5),IF(O6>E5,O7),G5*Q7)

LBinGA
 
Upvote 0
Is this what you mean
=IF(AND(E5>=O5,E5< P5),G5*Q5,IF(AND(E5>=O6,E5< P6),G5*Q6,IF(E5>=O7,G5*Q7)))
 
Upvote 0
You're welcome & thanks for the feedback.

For future reference,when posting formulae that use either > or < make sure you put a space between the character & any text, otherwise your formula will get destroyed as in your OP.
 
Upvote 0

Forum statistics

Threads
1,214,915
Messages
6,122,212
Members
449,074
Latest member
cancansova

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top