Vlookup - Same Reference, Different Value

Elaine10

New Member
Joined
Jan 18, 2022
Messages
4
Office Version
  1. 365
Platform
  1. Windows
Hi Everyone

I'm hoping someone can help me with this.... I have 2 sheets

1. ESTIMATOR CALC
2. QUOTE FRONT

I'm trying to get specific info to reference from my ESTIMATOR CALC to my QUOTE FRONT.

The formula I currently have in there works for item No. 1, but doesnt work all the way down up to item No. 3....

* Current formula being used
=IF($A47="", "", IFERROR(INDEX(EstimatorCalc_ColC, SMALL(IF('ESTIMATOR CALC'!$A$48:$A$1000=$A47, ROW('ESTIMATOR CALC'!$A$48:$A$1000)-ROW('ESTIMATOR CALC'!$A$48)+1, ""), ROWS($A$47:$A47))), ""))

* Another formula I have also used and it also worked but ALSO didnt pull through the values past cell 50 in the QUOTE FRONT
=IFERROR(INDEX('ESTIMATOR CALC'!$C$48:$C$1000, SMALL(IF($A$47='ESTIMATOR CALC'!$A$48:$A$1000, ROW('ESTIMATOR CALC'!$A$48:$A$1000)-ROW('ESTIMATOR CALC'!$A$48)+1, ""), ROWS($A$1:$A1))), "")

* This formula actually worked the best so far, however whenever i added or removed rows/columns it would stop working
=IFERROR(IF(INDEX('ESTIMATOR CALC'!$C$48:$C$1000, SMALL(IF($A$47:$A$999='ESTIMATOR CALC'!$A$48:$A$1000, ROW('ESTIMATOR CALC'!$A$48:$A$1000)-ROW('ESTIMATOR CALC'!$A$48)+1, ""), ROWS($A$1:$A1)))=0, "", INDEX('ESTIMATOR CALC'!$C$48:$C$1000, SMALL(IF($A$47:$A$999='ESTIMATOR CALC'!$A$48:$A$1000, ROW('ESTIMATOR CALC'!$A$48:$A$1000)-ROW('ESTIMATOR CALC'!$A$48)+1, ""), ROWS($A$1:$A1)))), "")
 

Attachments

  • ESTIMATOR CALC.jpg
    ESTIMATOR CALC.jpg
    69.9 KB · Views: 6
  • QUOTE FRONT.jpg
    QUOTE FRONT.jpg
    153.4 KB · Views: 6

Excel Facts

Is there a shortcut key for strikethrough?
Ctrl+S is used for Save. Ctrl+5 is used for Strikethrough. Why Ctrl+5? When you use hashmarks to count |||| is 4, strike through to mean 5.
=IF($A47="", "", IFERROR(INDEX(EstimatorCalc_ColC, MATCH($A47,EstimatorCalc_ColA,0)+COUNTIF($A$1:$A46,$A47)),"")) as a guess. You can see the logic anyway.
 
Upvote 0

Forum statistics

Threads
1,215,133
Messages
6,123,235
Members
449,092
Latest member
SCleaveland

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