Copy Data From Sheets

luisitocarrion1900

Board Regular
Joined
Oct 30, 2017
Messages
194
Office Version
  1. 365
Platform
  1. Windows
I have a Sheet Named NEA Status and a sheet Named Inventory Stats

I want that if Column D in Sheet named NEA Status Matches Column D in the sheet named Inventory Stats move the data from Column H in the sheet Named Inventory Stats to Column H in the sheet named NEA Status.
 

Excel Facts

Ambidextrous Undo
Undo last command with Ctrl+Z or Alt+Backspace. If you use the Undo icon in the QAT, open the drop-down arrow to undo up to 100 steps.
In that case try
=IFERROR(INDEX('Inventory Stats'!$H$2:$H$100,MATCH(D2,'Inventory Stats'!$D$2:$D$100,0)),IFERROR(INDEX('IRM Inventory Stats'!$H$2:$H$100,MATCH(D2,'IRM Inventory Stats'!$D$2:$D$100,0)),""))
 
Upvote 0
Any other requirements, that you have not already mentioned?
 
Upvote 0
In that case try
=IF(IFERROR(INDEX('Inventory Stats'!$H$2:$H$99,MATCH(D2,'Inventory Stats'!$D$2:$D$99,0)),IFERROR(INDEX('IRM Inventory Stats'!$H$2:$H$100,MATCH(D2,'IRM Inventory Stats'!$D$2:$D$100,0)),""))=0,"",IFERROR(INDEX('Inventory Stats'!$H$2:$H$99,MATCH(D2,'Inventory Stats'!$D$2:$D$99,0)),IFERROR(INDEX('IRM Inventory Stats'!$H$2:$H$100,MATCH(D2,'IRM Inventory Stats'!$D$2:$D$100,0)),"")))
 
Upvote 0
Now is reading that if the Data in H2 Matched the Data in D2 can it be change to read if the Data anywere in H matches the Data in D
 
Upvote 0
It's not matching the data in col H. It's matching the data in D2 to the data in col D on the other sheet.
 
Upvote 0

Forum statistics

Threads
1,214,649
Messages
6,120,728
Members
448,987
Latest member
marion_davis

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