Lookup values in multiple cells

NSegna

New Member
Joined
May 30, 2019
Messages
11
Hi,

I was wondering if I is possible for excel to read data found in 3 cells to find a number associated with those 3 cells on another sheet and insert that number back on the first sheet.


11001110021100311003
BVLD TCE-BLBVLD TCE-BLBVLD TCE-BLBVLD TCE-BL
HORSESHOEDOWNTOWN
HORSESHOEREACTIVE
XXXXXXXXXXXXXXXXXXXXX
XXXXXXX

<colgroup><col width="80" style="width: 60pt; mso-width-source: userset; mso-width-alt: 2925;" span="4"> <tbody> </tbody>

11037 BLVD TCE-BLHORSESHOE3017518
11041 BLVD TCE-BLHORSESHOE3002502
11045 BLVD TCE-BLHORSESHOE3017591
11001 BLVD TCE-BLDOWNTOWN3012453
11002 BLVD TCE-BLDOWNTOWN3007534
11003 BLVD TCE-BLDOWNTOWN3010712
11004 BLVD TCE-BLDOWNTOWN3002970
<colgroup><col width="91" style="width: 68pt; mso-width-source: userset; mso-width-alt: 3328;"> <col width="574" style="width: 431pt; mso-width-source: userset; mso-width-alt: 20992;"> <col width="154" style="width: 116pt; mso-width-source: userset; mso-width-alt: 5632;"> <col width="56" style="width: 42pt; mso-width-source: userset; mso-width-alt: 2048;"> <tbody> </tbody>

For example, I would like excel to read 11002, BVLD TCE-BL, and DOWNTOWN and give me the number 3007534 where the X's are. An IF statement would not work in this situation as there are 21000+ rows in the file.

Thank you for the help
000
<colgroup><col width="80" style="width: 60pt; mso-width-source: userset; mso-width-alt: 2925;" span="3"> <tbody> </tbody>
 

Excel Facts

Can you sort left to right?
To sort left-to-right, use the Sort dialog box. Click Options. Choose "Sort left to right"
Welcome to the forum.

I think this might help. Copy the formula A4 across. Depending on your version of Excel, the formula in A4 might need to be invoked with Ctrl+Shift+Enter.

[FONT=Verdana,Arial,Tahoma,Calibri,Geneva,sans-serif]
Book1
ABCD
111001110021100311003
2BVLD TCE-BLBVLD TCE-BLBVLD TCE-BLBVLD TCE-BL
3HORSESHOEDOWNTOWNHORSESHOEREACTIVE
4not found3007534not foundnot found
5
611037BVLD TCE-BLHORSESHOE3017518
711041BVLD TCE-BLHORSESHOE3002502
811045BVLD TCE-BLHORSESHOE3017591
911001BVLD TCE-BLDOWNTOWN3012453
1011002BVLD TCE-BLDOWNTOWN3007534
1111003BVLD TCE-BLDOWNTOWN3010712
1211004BVLD TCE-BLDOWNTOWN3002970
Sheet35
Cell Formulas
RangeFormula
A4=IFNA(INDEX($D$6:$D$12,MATCH(A1&A2&A3,$A$6:$A$12&$B$6:$B$12&$C$6:$C$12,0)),"not found")
[/FONT]
 
Upvote 0
Thank you for your response,
Unfortunately, the formula gave me a #VALUE ! Error when I entered it on my spreadsheet. I then tried to recreate the sample you sent me and got the same error message on that too.
 
Upvote 0
Did you confirm it with Ctrl Shift Enter?
If so you should see the formula wrapped in {}
 
Upvote 0

Forum statistics

Threads
1,217,414
Messages
6,136,492
Members
450,016
Latest member
murarj

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