Vlookup Technique Help

Excel777

Well-known Member
Joined
Jul 3, 2009
Messages
912
Office Version
  1. 2019
Hey,
Plz Need Help In This Lookup Technique

Excel Workbook
ABCDEFGHIJKLM
1
2FormulaLookUp ValuesTable ArrayDataResultsTable1Table2Table3
3#N/AA1:A9Table2A1100A11A1100A11000
4A2101A22A2101A21001
5A3102A33A3102A31002
6A4103A44A4103A41003
7A5104A55A5104A51004
8A6105A66A6105A61005
9A7106A77A7106A71006
10A8107A88A8107A81007
11A9108A99A9108A91008
12A1010A10109A101009
13A1111A11110A111010
14A1212A12111A121011
15A1313A13112A131012
16A1414A14113A141013
17A1515A15114A151014
Sheet2





My look Up Formula Is In Cell A3
In Cell B3 The "Lookup Values" It's The Range From "A1:A9"
In Cell C3 The Data List Including Table 1,2,3 "Table Array"
My Results Of Shoul Be In Cells F3:F11

How Can I Apply This

Thanks In Advance
 
Last edited:
Try

Code:
Sub lkup()
Dim c As Range
Range("F3:F1000").ClearContents
For Each c In Range(Range("B3").Value)
    If c.Value <> "" Then
        c.Offset(, 1).Formula = "=VLOOKUP(" & c.Value & "," & Range("C3").Value & ",2,false)"
    End If
Next c
End Sub
 
Upvote 0

Excel Facts

Spell Check in Excel
Press F7 to start spell check in Excel. Be careful, by default, Excel does not check Capitalized Werds (whoops)

Forum statistics

Threads
1,216,360
Messages
6,130,175
Members
449,562
Latest member
mthrasher16

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