???????? Column match ??????????

Bruce Ratcliffe

New Member
Joined
May 26, 2015
Messages
5
What formula can be used to return a value in a column that is next to a column of names and match that with another column where the same names have been rearranged?
 

Excel Facts

Select a hidden cell
Somehide hide payroll data in column G? Press F5. Type G1. Enter. Look in formula bar while you arrow down through G.
Hi, try index(range_to_be _returned, match(value_to_check,Range_where_value_is,0))
note index range and match range should be of the same size example A$17:A$456 and $C$17:$C$456
 
Upvote 0
Another to try:
Excel Workbook
ABC
1Johnmatches cell $C$4Paul
2Paulmatches cell $C$1Tom
3Georgematches cell $C$5Ringo
4Ringomatches cell $C$3John
5Janeno matchGeorge
6Bill
R40
 
Upvote 0
Thank you, but what I am trying to do is to take the numbers in one column that are paired with names in another column and pair them again with a third column where the names have been rearranged. Not sure how the above formulas will do that for me?
 
Upvote 0
try:

Excel 2013
ABCDE
1namenumbernamenumber
2john4adele5
3mark3joan9
4adele5john4
5phil7mark3
6joan9phil7
Bruce Ratcliffe
Cell Formulas
RangeFormula
E2=INDEX($B$2:$B$6,MATCH(D2,$A$2:$A$6,0))
 
Upvote 0

Forum statistics

Threads
1,214,911
Messages
6,122,192
Members
449,072
Latest member
DW Draft

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