3 droplist to have different fomulas acording to choice

JaykSA

New Member
Joined
Oct 11, 2014
Messages
18
i have 3 cells (all droplist)
Outerborder
  • wood=$30
  • polystirene=$50
  • clay=$60
(WIth out showing the numbers)
CONTENT
  • Filling=30%
  • Fake=0
  • wood=10%


SIZE
  • 500mmx250mm=(*5)
  • 450mmx250mm=(*4)
  • 330mmx250mm=(*3)
all of them should work together to evaluate a price
in a nother cell
Any ideas???
 

Excel Facts

Remove leading & trailing spaces
Save as CSV to remove all leading and trailing spaces. It is faster than using TRIM().
Like so:


Excel 2010
BCDEFGHI
1OuterBorderContentSizePrice
2woodFilling500mmx250mm$ 195.00wood$30
3polystirenewood450mmx250mm$ 6,200.00polystirene$50
4n/aclay$60
5n/aFilling30%
6n/aFake0
7n/awood10%
8n/a500mmx250mm5
9n/a450mmx250mm4
10n/a330mmx250mm3
11n/a
12n/a
13n/a
Sheet2
Cell Formulas
RangeFormula
E2=IFERROR(VLOOKUP(B2, $H$2:$I$10, 2, 0)*(1+VLOOKUP(C2, $H$2:$I$10, 2, 0)) * VLOOKUP(D2, $H$2:$I$10, 2, 0), "n/a")
 
Upvote 0
Hi Jerry! sorry i am clueless to what I am doing wrong.

You formula works mine does nothing.

=IFERROR(VLOOKUP(C34,$X$35:$Y$82,34,0)*(1+VLOOKUP(E34,$X$35:$Y$82,34,0))*VLOOKUP(G34,$X$35:$Y$82,34,0),"N/a")

Set them all up as a droplist

I am not to clued up. For someone that now how this works could you tell me where i went wrong?
Sorry for all the questions
 
Upvote 0
There are only 2 columns in the search range, X:Y. The third parameter of a VLOOKUP is the column number in the designated range, since your range only has 2 columns, the highest number would be 2 for the third parameter, but you put 34 for some reason. Try 2 instead, 2 would bring back the answer from the 2nd column in the designated search range.
 
Upvote 0

Forum statistics

Threads
1,214,911
Messages
6,122,199
Members
449,072
Latest member
DW Draft

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