spyldbrat

Board Regular
Joined
May 5, 2002
Messages
211
Office Version
  1. 365
I have two spreadsheets: 2017-08-03 Compliance Response and Current Compliance. Both spreadsheets have the same column and column headers.

2017-08-03 COMPLIANCE RESPONSE/NJN Tab - I need to add the data from column K using column L as my lookup value to column H of the "CURRENT COMPLIANCE". I cannot move my lookup value column on the spreadsheets.

I tried and Index/Match formula but it's not working. This is the formula I have in column H of CURRENT COMPLIANCE. What is wrong with my formula?

=INDEX($A$8:$M553,MATCH(L8,'Compliance Response.xlsm]NJN'!$A8:$M500,0),12)
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
The lookup array of match should only have a column OR row, A8:A553 or A8:M8. This is how match knows if it is returning a row number or a column number.

With out seeing your data this is a guess but try
Code:
=INDEX($K$8:$K553,MATCH(L8,'[Compliance Response.xlsm]NJN'!$H8:$H553,0))
 
Last edited:
Upvote 0
Indeed there is more that is wrong...

=INDEX('[Compliance Response.xlsm]NJN'!$A$8:$M553,MATCH(L8,'[Compliance Response.xlsm]NJN'!$A8:$A553,0),12)

which matches L8 against the A range and returns a value from the L range (12th column in A8:M553).
 
Upvote 0
I tried all the examples above...none of them seem to work :(

Then try to explain one by one:

What is the name of the external workbook you refer to?

Which sheet contains the data?

What is the look up value?

Against which range must the look up must be matched?

From which range must a result be returned if the matching succeeds?
 
Upvote 0
hen try to explain one by one:

What is the name of the external workbook you refer to?
2017-08-03 COMPLIANCE RESPONSE

Which sheet contains the data?
NJN

What is the look up value?
Column L

Against which range must the look up must be matched?
I am not sure what you are asking?

From which range must a result be returned if the matching succeeds?
Column H
 
Upvote 0
hen try to explain one by one:

What is the name of the external workbook you refer to?
2017-08-03 COMPLIANCE RESPONSE

Which sheet contains the data?
NJN

What is the look up value?
Column L

Against which range must the look up must be matched?
I am not sure what you are asking?

From which range must a result be returned if the matching succeeds?
Column H

Where/in which column must L8 (from column L), which is the look up value, be searched in order to get a result from H?
 
Upvote 0
I am still not understanding what you are exactly asking but column L is has the common data (Value Look Up) between the two spreadsheets. I need it to match column L between the two spreadsheets and return the value in column H from my source spreadsheet. My data starts on row 8 on both spreadsheets. I hope this makes it more clear.
 
Upvote 0
Try...

=INDEX('[Compliance Response.xlsm]NJN'!$H$3:$H$553,MATCH(L8,'[Compliance Response.xlsm]NJN'!$L$3:$L$553,0))
 
Upvote 0

Forum statistics

Threads
1,215,737
Messages
6,126,562
Members
449,318
Latest member
Son Raphon

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