IF Formula with AND and Between help please

Combat Womble

New Member
Joined
Nov 18, 2015
Messages
30
Hello.
Thank you for the help you have given me over the years - this site is my number excel reference! This time, I just can't figure it out :( I am trying to get right a small part of what will be a bigger formula.

Can you tell me whats wrong with this: Excel gives me an error message about "
=IF((AND, M2="y", R2<=.26),(L2-1.657+B2)*$V$1*1.25,"TEST")

If M = y AND R = .26 or below then [a bit of math]. If not print test.

I need the principle to work so I can create a big IF formula.

That will look something like

=IF((AND, M1=”y”, R1<=.26),[Math], IF((AND, M1=”y”, (AND, R1>=.261, R1<=.28),[Math], IF((AND, M1="y", R1>=.281),[Math], IF((AND, M1=”n”, R1<=.26),[Math], IF((AND, M1=”n”, (AND, R1>=.261, R1<=.28),[Math], IF((AND, M1="n", R1>=.281),[Math],”ERROR”))))))))))

... but have more permutantions.

y
under.19nunder.19
betweenbetween
y.20 and .23n.20 and .23
y.23 and .259n.23 and .259
y.26 and .289n.26 and .289
y.29 and .319n.29 and .319
y.32 and .349n.32 and .349
y.35 and .379n.35 and .379
y.38 and .409n.38 and .409
y.41 and .439n.41 and .439
yover.4nover.4

<tbody>
</tbody>


I have about 3.5k lines of data.

Please can you tell me what I've done wrong with the above formula. Also is there an easy way to do this? (intead of writing a very large IF formula)
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
Try:

=IF(AND(M2="y", R2<=0.26),(L2-1.657+B2)*$V$1*1.25,"TEST")


Incidentally, you should probably use some form of a LOOKUP or MATCH to go through a table like that. The resulting formula will be much simpler and easier to manage than a large nested IF.
 
Last edited:
Upvote 0
Try:

=IF(AND(M2="y", R2<=0.26),(L2-1.657+B2)*$V$1*1.25,"TEST")

Incidentally, you should probably use some form of a LOOKUP or MATCH to go through a table like that. The resulting formula will be much simpler and easier to manage than a large nested IF.

Thank you! (happy, yet annoyed, I was so close).

I am off to try and learn basics of LOOKUP and MATCH. Time for me to move on from large IF formulas.

Thank you again.
 
Upvote 0

Forum statistics

Threads
1,214,788
Messages
6,121,603
Members
449,038
Latest member
Arbind kumar

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