Issue Moving data between worksheets using INDEX and Match it is offset 1 column

eechristaylor

New Member
Joined
Oct 22, 2013
Messages
43
Office Version
  1. 365
Platform
  1. Windows
I have data I am trying to reference to two different items, a Task # and then the title of the position working. The data is being pulled but it is offset 1 column, it pulls the data correctly related to the task but it is offset by 1 column.

The formula I am using is =INDEX('Data-CT-SG'!$B$124:$W$126,MATCH($A4,'Data-CT-SG'!$B$124:$B$126,0),MATCH(D$2,'Data-CT-SG'!$9:$9,0)) and is in the highlighted area below.

1670507597121.png


This is the source:
1670507725064.png


As you can see the "2" is under the Project Principal INSTEAD of being under the QA/QC Manager. This is the case across all fields, being offset by one column? Any help would be appreciated in identifying this issue.
 

Excel Facts

How to fill five years of quarters?
Type 1Q-2023 in a cell. Grab the fill handle and drag down or right. After 4Q-2023, Excel will jump to 1Q-2024. Dash can be any character.
It's because you are using an entire row on the 2nd match, try
Excel Formula:
=INDEX('Data-CT-SG'!$B$124:$W$126,MATCH($A4,'Data-CT-SG'!$B$124:$B$126,0),MATCH(D$2,'Data-CT-SG'!$B$9:$W$9,0))
 
Upvote 0
Solution
It's because you are using an entire row on the 2nd match, try
Excel Formula:
=INDEX('Data-CT-SG'!$B$124:$W$126,MATCH($A4,'Data-CT-SG'!$B$124:$B$126,0),MATCH(D$2,'Data-CT-SG'!$B$9:$W$9,0))
Perfect thanks so much I see that now my example was using the full set of data!
 
Upvote 0
You're welcome & thanks for the feedback.
 
Upvote 0

Forum statistics

Threads
1,216,336
Messages
6,130,100
Members
449,557
Latest member
SarahGiles

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