Can the LOOKUP_VALUE in a MATCH function be CONCATENATED?

artikyulashun

New Member
Joined
Aug 21, 2012
Messages
41
Can the lookup_value within a MATCH function use the Concatenated value of two cells to identify the COLUMN number of a spreadsheet?

MATCH(lookup_value, lookup_array, [match_type])

Something like this is what I'm attempting : MATCH(CONCAT(A1,"-"B1),Sheet2!$3:$3,0)

Airic
 

Excel Facts

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
CONCAT is incredibly useful for concatenating a large number of strings.

For just two cells and a hyphen, I'd use the ampersand instead.

Code:
=MATCH(A1&"-"&B1,Sheet2!$3:$3,0)
 
Upvote 0
Thank you kweaver + Oaktree.

I landed on the following formula, but will give the ampersand an attempt as well :
=INDEX($D$8:$H$9,MATCH($D$13,$C$8:$C$9,0),MATCH(CONCATENATE($D$14,"-",$C$15),$D$8:$H$8,0))


<tbody>
</tbody>
I was beginning to doubt this would work, but I believe it had more to do with the lookup_arrays I was using than the actual CONCAT.

Thank you once again!
 
Last edited:
Upvote 0

Forum statistics

Threads
1,215,066
Messages
6,122,948
Members
449,095
Latest member
nmaske

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