conditional formula needed

ruthm8611

New Member
Joined
Apr 20, 2007
Messages
49
I have the following data and need a formula that will return a number depending on the outcome for the criteria.
Points
Goal1 & Goal2 >= 125% and Goal3 >= 100% 5
Goal1 >= 125% and Goal2 and Goal 3 >=100% 4
Goal 1, 2, and 3 >= 100% 3
Goal 1 and/or 2 and/or 3 >= 100% 2


Thank you in advance for any assitance.
 

Excel Facts

Move date out one month or year
Use =EDATE(A2,1) for one month later. Use EDATE(A2,12) for one year later.
Hi,

You don't say what Goal1, 2, 3 are, I guess they will be cell references.
So based on that assumption try this....

Excel Workbook
ABCDEF
2Goal1Goal2Goal3Points*Criteria
3100%101%125%3*100%
4*****125%
Sheet3



I'm not sure if this is the best solution for you.

Good Luck

Ak
 
Upvote 0
Thank you for the time you spent on this. The only part that doesn't work is the OR string. I need this part to return a 2 if at least two of the three goals are 100%. Any help is greatly appreciated.
 
Upvote 0
Hi,

I'm confused, which probably isn't your fault.
If you want to show 2 when any of the 2 criteria are >= 100% then this will do it if the 3rd criteria is less than 100%....

=IF(AND(A3>=F4,B3>=F4,C3>=F3),5,IF(AND(A3>=F4,B3>=F3,C3>=F3),4,IF(AND(A3>=F3,B3>=F3,C3>=F3),3,IF(OR(AND(A3>=F3,B3>=F3),AND(B3>=F3,C3>=F3),AND(A3>=F3,C3>=F3)),2,"Oops"))))

I've probably totally misunderstood how you require the results to be constructed, sorry. This formula looks long and I guess there will be someone with a shorter smarter solution for you.

Ak
 
Upvote 0

Forum statistics

Threads
1,224,602
Messages
6,179,845
Members
452,948
Latest member
UsmanAli786

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