I got the Formula Blues

cameron_kyle

Active Member
Joined
Jan 14, 2006
Messages
313
I have a rather complex if statement which I am batteling to create


This is my aim


Working from cell N3 if M3 is between 50% and 60% display “SEND REM” if M3 is between 75% and 85% display “SEND FINAL REM”. And if P3 has a “1” in it Display REM SENT



This seems way to complex for me to grasp this formula and any advice or support will be much apresiated
 

Excel Facts

Back into an answer in Excel
Use Data, What-If Analysis, Goal Seek to find the correct input cell value to reach a desired result
Your logic has big gaps in it ... what about M3 being below 49%, or being between 61% and 74%, or being between 86% and 99%?
 
Upvote 0
Hi Cameron

Probably some variation on the following will work, however, since you appear to have 'gaps' in yopur criteria (ie what happens between 60% and 75%?) it needs work:

Code:
=IF(P3=1,"REM SENT",LOOKUP(M3,{0,0.5,0.75},{"","SEND REM","SEND FINAL REM"}))

Best regards

Richard
 
Upvote 0

Forum statistics

Threads
1,214,606
Messages
6,120,479
Members
448,967
Latest member
visheshkotha

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