Multiple If Function

nitin002002

New Member
Joined
Jan 22, 2014
Messages
2
Greetings,

I am trying to nest if formula but unfortunately ending up with an error

I need to calculate 2 separate cells as follows


If Cell "A1" is equal to 100% and cell "D1" is equal to 150%, then my calculation should be based on cell "D1" . And I have several parameters for the same.

Criteria :-

1) 90% - 100/- AED
2) 100% - 150/- AED
3) Special - 200/- AED

So I am using two formulas separately ..

For cell "A1" I am calculating as follows:-


=if(a1<90%,0,if(a1<100%,100,150)

for cell "D1" I am calculating as follows:-

=if(d1<100%,0,200)

but now I need to nest all of the nested formula in 1.

Please help!!!!!
 

Excel Facts

Best way to learn Power Query?
Read M is for (Data) Monkey book by Ken Puls and Miguel Escobar. It is the complete guide to Power Query.
Not quite sure I completely understand how you are combining these (what all the different conditions and rules are), but perhaps this will get you started.
You can use the AND function to check for multiple conditions, i.e.

Code:
=IF(AND(A1=100%,D1=150%),...

Also, here are a few links on the web that talk about nesting IF functions in Excel:
http://spreadsheets.about.com/od/tipsandfaqs/qt/nested_if.htm
MS Excel: Nested IF Functions (WS)

If you run into trouble, post back with more details (maybe with some actual examples and your expected results).

 
Upvote 0

Forum statistics

Threads
1,215,043
Messages
6,122,822
Members
449,096
Latest member
Erald

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