Formula needed, stuck and do not know how to proceed!

bksparkz

New Member
Joined
Mar 20, 2014
Messages
36
Good morning All,

Before I start I would like to thank everyone for any help. I love this site and the help I receive is always amazing.

I need help getting a formula to do the following...

Formula is going into cell B4, if true cell b4 should say "Improved" if false "No Improvement"
N4 = Y and M4(date) is >70 days from today and if(BH4 is half of or more than half of AB4) or if (BH4 is 5 or more less than AB4 and BH4 is under 10)

I know this is a lot. I am stuck and do not know how to do this.

Thank you all!
 
Last edited:

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
If I understand you correctly:

Try this:

Code:
=IF(OR(AND(N4="Y",(M4-TODAY())>=70,BH4>-(AB4/2)),(AND(AB4-BH4<=5,BH4<10))),"Improved","Not Improved")

Walk through each of those logical conditions to make sure that is what you are needing.

It seemed to me that you had 2 sets of data to look at. One where 3 conditions are met, and one where 2 conditions are met.
 
Upvote 0
Thank You Revcanon for the reply. The formula did not work, and I think I know why. I forget to add another detail. If N4 = N or if N4 is blank, then B4 should be blank.
 
Upvote 0
Thank You Revcanon for the reply. The formula did not work, and I think I know why. I forget to add another detail. If N4 = N or if N4 is blank, then B4 should be blank.
Also, for M4-Today (I do not know if it makes a difference but M4 is a data that has already passed)
 
Upvote 0

Forum statistics

Threads
1,214,998
Messages
6,122,639
Members
449,093
Latest member
Ahmad123098

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