Vlookup incorrect or 'slightly scatty'....

timberdog

New Member
Joined
Aug 26, 2011
Messages
4
Hi
I am making a pricing book for picture framing (which I dabble in) and seem to have a problem with my vlookup bringing incorrect answers back to a cell. I have 4 dropdown list and a vlookup (and table) for each list. Calculations on half of the available 'dropdown' options are correct and others are returning that same answers despite having different table values.
Here is a link to my file (as I can't seem to attach) http://www.timberdog.co.uk/frame_pricing.xlsx to see if anyone can see whats wrong. It must be a simpe thing but Im damned if I can see it :confused::confused:
For instance on the Mount dropdown list 'conservation' is the same as 'black core' but it should be at least half the cost of 'black core' All other drop-dpwns have the same inaccuracies within them.
Please help me !
 

Excel Facts

What do {} around a formula in the formula bar mean?
{Formula} means the formula was entered using Ctrl+Shift+Enter signifying an old-style array formula.
You need to set the 4th parameter to false and make your lookup table range absolute

=VLOOKUP(B2, costings!A$2:D$50,3,FALSE)*E2*costings!G2
 
Upvote 0
Welcome to the board.


Try adding FALSE as the 4th argument in each of your vlookup formulas.
 
Upvote 0
Since the table array is not a sorted list, you will need to modify your formula from

Rich (BB code):
=VLOOKUP(B4,costings!K7:P11,6)*E4*costings!F2

to

Rich (BB code):
=VLOOKUP(B4,costings!K7:P11,6,0)*E4*costings!F2
 
Upvote 0
thank you to all of you. It is all working fine now.
I am going to look up about making things 'absolute' and why I need add a 'false' to argument - but thats got me out of a pickle for now !:):)
 
Upvote 0

Forum statistics

Threads
1,224,522
Messages
6,179,297
Members
452,903
Latest member
Knuddeluff

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