Verification of a Vehicle price

NoelD

New Member
Joined
Apr 16, 2015
Messages
33
Office Version
  1. 2019
Platform
  1. Windows
I wish to create a price verification excel routine.

I have a price file for a vehicle and a file for the options available for that code.

I can use vlookup to check the base cost of the vehicle, however I am stuck on how to verify the options that are attached to that model code. the option code is universal but price is based on vehicle model code,
1630620321070.png


1630620343290.png

1630620362330.png


any help would be appreciated
 

Excel Facts

Lock one reference in a formula
Need 1 part of a formula to always point to the same range? use $ signs: $V$2:$Z$99 will always point to V2:Z99, even after copying
Hi Noel,

Do you have Excel 365? or what version?
 
Upvote 0
If you have Excel 365, maybe this

Note that (Sheet2!$B$3:$B$10=$E$3),"") returns a blank when there is no match for extras data list (Sheet 2)

Book1
ABCDEFGHIJ
2MODELDESCMODELPRNOEXTRA DESCRIPTIONDPDMCHQCHQINRRP
3CB223XIPASSAT 2.0TDI M6F 150CB223XI PASSAT 2.0TDI M6F 1501M6SWIVEL TRAILER$801.01
4CB223XIPASSAT 2.0TDI M6F 150CB223XI PASSAT 2.0TDI M6F 1507K2PARK DIST$695.66
5CB223XIPASSAT 2.0TDI M6F 150CB223XI PASSAT 2.0TDI M6F 150MP1METALLIC PAINT$758.59
6CB223XIPASSAT 2.0TDI M6F 150CB223XI PASSAT 2.0TDI M6F 150MP2SPECIAL PAINT 1$883.28
7CB223XIPASSAT 2.0TDI M6F 150CB223XI PASSAT 2.0TDI M6F 150MP4SPECIAL PAINT 2$1,361.30
8CB223XIPASSAT 2.0TDI M6F 150CB223XI PASSAT 2.0TDI M6F 150MP7PEARL$758.59
9CB223XIPASSAT 2.0TDI M6F 150CB223XI PASSAT 2.0TDI M6F 150MP9FLAT PAINT$170.82
10CB223XIPASSAT 2.0TDI M6F 150CB223XI PASSAT 2.0TDI M6F 1504F2RANDOM$777.00
Sheet2


Book1
BCDEFGHIJ
2RRPDISCVATVRT/NQX
3MODEL CODECB223XIPASSAT 2.0TDI M6F 150
4
5EXTRAS1M6SWIVEL TRAILER$801.01
64F2RANDOM$777.00
7KA2
8MP1METALLIC PAINT$758.59
Sheet1
Cell Formulas
RangeFormula
E5E5=FILTER(Sheet2!$E$3:$E$10,(Sheet2!$D$3:$D$10=D5)*(Sheet2!$B$3:$B$10=$E$3),"")
F5F5=FILTER(Sheet2!$J$3:$J$10,(Sheet2!$D$3:$D$10=D5)*(Sheet2!$B$3:$B$10=$E$3),"")
 
Upvote 0
I have excel 2019.
I suggest that you update your Account details (or click your user name at the top right of the forum) so helpers always know what Excel version(s) & platform(s) you are using as the best solution often varies by version. (Don’t forget to scroll down & ‘Save’)

How about
Excel Formula:
=INDEX(Sheet1!$K$3:$K$100,AGGREGATE(15,6,(ROW(Sheet1!$K$3:$K$100)-ROW(Sheet1!$K$3)+1)/(Sheet1!$B$3:$B$100=$E$3)/(Sheet1!$D$3:$D$100=D5),1))
 
Upvote 0

Forum statistics

Threads
1,214,907
Messages
6,122,183
Members
449,071
Latest member
cdnMech

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