Avogadro

Board Regular
Joined
Apr 29, 2010
Messages
59
I have to repeat this code for oknProductID_1 through oknProductID_20. As you can see it is already to long for one ProductID.

Any help out there?



HTML:
=IF(AND(oknProductID_1="MW 600",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="MW 102",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="MW 101",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="MW 100",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="MA 888",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="MA 884",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="MA 871",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="MW 10",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="MW 11",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="MW 12",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="MW 14",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="MW 500",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="MW 802",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="BEM 802",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="Mi 150",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="MI 151",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="Mi 605",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="pH 600",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="MC 122",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="MC 125",NOT(oknShipCountry="USA")),AX34,""))))))))))))))))))))

IF(AND(oknProductID_1="MW 600",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="MW 102",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="MW 101",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="MW 100",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="MA 888",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="MA 884",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="MA 871",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="MW 10",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="MW 11",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="MW 12",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="MW 14",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="MW 500",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="MW 802",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="BEM 802",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="Mi 150",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="MI 151",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="Mi 605",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="pH 600",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="MC 122",NOT(oknShipCountry="USA")),AX34,IF(AND(oknProductID_1="MC 125",NOT(oknShipCountry="USA")),AX34,""))))))))))))))))))))
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
That one can be simplified to

=IF(AND(oknShipCountry<>"USA",
OR(oknProductID_1={"MW 600","MW 102","MW 101","MW 100","MA 888","MA 884","MA 871","MW 10","MW 11","MW 12","MW 14","MW 500","MW 802","BEM 802","Mi 150","MI 151","Mi 605","pH 600","MC 122","MC 125"}), ), AX34, "")

Then you can put all those values in a range (say A1:A20), and use

=IF(AND(oknShipCountry <> "USA", OR(oknProductID_1 = A1:A20)), AX34, "")

The latter formula MUST be confirmed with Ctrl + Shift + Enter instead of just Enter.
 
Upvote 0

Forum statistics

Threads
1,215,784
Messages
6,126,878
Members
449,347
Latest member
Macro_learner

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