Matching two range of value

vivian_pinto

New Member
Joined
Apr 25, 2016
Messages
10

<colgroup><col span="11"><col></colgroup><tbody>
</tbody>
Dear All I am trying to get the result in excel like this.

please help me to get code at MATCHING COLUMN.

RANGE1RANGE2MATCHING
NAME VALUE1VALUE2NAME VALUE1VALUE2ANSWERVALUE1VALUE2RESULT
CCCCC1CC11BBBBB1BB11CCC321CC11NOT MATCH
BBBBB1BB11EEEEE1EE11BBBBB1BB11MATCH
DDDDD1DD11CCC321CC11DDDDD1555NOT MATCH
EEEEE1EE11DDDDD1555EEEEE1EE11MATCH

<colgroup><col span="11"><col></colgroup><tbody>
</tbody>
 
Hi,


Error in A38 and B38 can be ignored.
values are equally sized and look different in size coz its dash separated values.
 
Upvote 0

Excel Facts

Round to nearest half hour?
Use =MROUND(A2,"0:30") to round to nearest half hour. Use =CEILING(A2,"0:30") to round to next half hour.

Excel 2013 32 bit
ABCDEFGHI
1RANGE1RANGE2
2NAMEVALUE1VALUE2NAMEVALUE1VALUE2Answer
3CCCCC1CC11BBBBB1BB11Not Match
4BBBBB1BB11EEEEE1EE11Match
5DDDDD1DD11CCC321CC11Not Match
6EEEEE1EE11DDDDD1555Match
7
Sheet2
Cell Formulas
RangeFormula
I3=IF(VLOOKUP(A3,$E$3:$G$6,2,)&VLOOKUP(A3,$E$3:$G$6,3,0)=B3&C3,"Match","Not Match")
 
Upvote 0
Another Way:


Excel 2013 32 bit
ABCDEFGHI
1RANGE1RANGE2
2NAMEVALUE1VALUE2NAMEVALUE1VALUE2Answer
3CCCCC1CC11BBBBB1BB11Not Match
4BBBBB1BB11EEEEE1EE11Match
5DDDDD1DD11CCC321CC11Not Match
6EEEEE1EE11DDDDD1555Match
7
Sheet2
Cell Formulas
RangeFormula
I3=IF(SUMPRODUCT(--(INDEX($F$3:$G$6,MATCH(A3,$E$3:$E$6,0),0)=B3:C3))=2,"Match","Not Match")
 
Upvote 0
Hi,

Thank you for concern,

I just gave those values for example.

I don't need those values to be affected.

Thank you
 
Upvote 0

Forum statistics

Threads
1,214,789
Messages
6,121,590
Members
449,039
Latest member
Arbind kumar

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