Multiple logic - If/OR

tigerstew

New Member
Joined
Sep 18, 2011
Messages
1
Can someone help me with the formula the following please with the SUM Logic function;

I am trying to put prices in - so if they select (for example) apple, banana or orange from a drop down list, the price will be $1, but if they select anything else, the price will be $1.15

So, is there an "or" function? I cant seem to make AND work...

=IF(A1="apple" OR "Banana" OR "Orange",1*A2,1.15*A2)
 

Excel Facts

Highlight Duplicates
Home, Conditional Formatting, Highlight Cells, Duplicate records, OK to add pink formatting to any duplicates in selected range.
The syntax for OR would be

=IF(OR(A1="Apple",A1="Banana",A1="Orange"), 1*A2, 1.15*A2)

although I prefer the formulation

=A2 * IF(OR(A1="Apple",A1="Banana",A1="Orange"), 1, 1.15)
 
Upvote 0
Can someone help me with the formula the following please with the SUM Logic function;

I am trying to put prices in - so if they select (for example) apple, banana or orange from a drop down list, the price will be $1, but if they select anything else, the price will be $1.15

So, is there an "or" function? I cant seem to make AND work...

=IF(A1="apple" OR "Banana" OR "Orange",1*A2,1.15*A2)
Here's another one...

=IF(OR(A1={"Apple","Banana","Orange"}),1*A2,1.15*A2)
 
Upvote 0

Forum statistics

Threads
1,215,694
Messages
6,126,258
Members
449,307
Latest member
Andile

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