Index Match w/ ISNUMBER(FIND ?

SnKeaK

New Member
Joined
Oct 27, 2012
Messages
32
Office Version
  1. 365
Platform
  1. Windows
So I have 3 columns of data.

COLUMN A & B contain data that remain the same.
COLUMN C I use for data entry to find the info i need, then I delete the data in those cells

What I need to figure out is, how can search the range in COL B and find if the last 4 digits in COL C matches, if false, show blank, if true, display the adjacent User ID to the PIN that was matched.

For Example: (Working in COL D, Row 1)

COL B, Row 6 - the value is 0005. I find it in COL C, Row 3. And Return the value in COL A, Row 6. 2046133


User IDPINTip's
785288100012.310002
369803100022.320005
272663800031.230001
2586425400040.560007
204613300052.390006
1606363700062.146717
 

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
Try this:

Book1
ABCD
1User IDPINTip's
2785288100012.3100023698031
3369803100022.3200052046133
4272663800031.2300017852881
52586425400040.560007 
6204613300052.39000616063637
71606363700062.146717 
Sheet1
Cell Formulas
RangeFormula
D2:D7D2=IFERROR(INDEX($A$2:$A$7,MATCH(RIGHT(C2,4),$B$2:$B$7,0)),"")
 
Upvote 0
Solution

Forum statistics

Threads
1,224,823
Messages
6,181,177
Members
453,021
Latest member
Justyna P

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