Multiple If fuction help needed

TheBradster

New Member
Joined
Sep 17, 2014
Messages
2
I've been sitting with this for a week, and have gotten nowhere. Please help me.

i. if the return is 10% and more, and the return is 15% and more, the decision criteria is classified as “favorable”
ii. if the following criteria is met, then the decision criteria is classified as “consider”
a) a total return on each asset of 12%, or
b) a investment of 15% return, and at least a 5% global return, or
c) a total return of 15% but a global return of less than 10%
iii. if none of the criteria is met in “i” and “ii”, then the decision criteria is classified as “do not consider”.

Thanks
 
Last edited:

Excel Facts

Test for Multiple Conditions in IF?
Use AND(test, test, test, test) or OR(test, test, test, ...) as the logical_test argument of IF.
Hi..

Which cells are your criteria in?

I think this line is incorrect..

i. if the return is 10% and more, and the return is 15% and more, the decision criteria is classified as “favourable”
 
Upvote 0
i. if the return is 15% and more then the return is always 10% and more, there's no AND about it.
You need to explain this more clearly.

It would help if you supply a dummy spreadsheet
 
Upvote 0
Asset ReturnInvestmentGlobal ReturnGlobal InvestmentTotal returnDecision criteria
50%50%
10018,34,22,01,05,2
10026,03,011,05,58,5
10038,84,421,010,514,9
100412,56,324,012,018,3

<colgroup><col><col span="7"></colgroup><tbody>
</tbody>

Cells
Return B4
Investment Return C4
Global return D4
Global Investment E4
Total return F4
Decision G4
 
Last edited:
Upvote 0
Hi TheBradster,

To be perfectly honest I don't think this makes much sense, but since this is for you, you are the only one it has to make sense to...

Here you go, this seams to be what you asked for:

=IF(B4>=0.1;"Favorable";IF(OR(F4=0.12;AND(C4=0.15;E4>=0.05);AND(F4=0.15;D4<0.1));"Consider";"Do not consider"))

Don't forget to adjust your decimal points and your formula separators to meet your regional settings in case mine are different (as they will probably be 'cause I'm from Portugal)...

Please let us know if it works.
 
Last edited:
Upvote 0

Forum statistics

Threads
1,214,520
Messages
6,120,011
Members
448,935
Latest member
ijat

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