Copy date from a different Sheet

luisitocarrion1900

Board Regular
Joined
Oct 30, 2017
Messages
194
Office Version
  1. 365
Platform
  1. Windows
I want to be able to copy data from a different sheet to a specific feel in a another sheet.

I have a sheet named GSO Inventory Stats and a sheet named Retag metrics. I need to put a formula in Column I, that if Column H in sheet GSO Inventory Stats matches the sheet named Retag Metrics Column A move the data from Column D into the Sheet GSO Invenotry Stats Column I.
 

Excel Facts

Create a chart in one keystroke
Select the data and press Alt+F1 to insert a default chart. You can change the default chart to any chart type
It seems you need the vlookup formula
Put this formula in cel I2 on sheet "GSO Inventory Stats"

=VLOOKUP(H2,'Retag metrics'!A:D,4,0)
 
Upvote 0
What about if i want to add also the same as Retag Metrics but also read the same info from the Sheet IRM Inventory Stats
 
Upvote 0
Does the formula work for what you asked for in the initial post?
The next thing you ask, you can explain it with examples.
 
Upvote 0
I have a question how can it be modify so that if the data is is not found just leave it blank and not add the #N/A
 
Last edited:
Upvote 0
Try

=iferror(VLOOKUP(H2,'Retag metrics'!A:D,4,0),"")
 
Upvote 0

Forum statistics

Threads
1,224,820
Messages
6,181,159
Members
453,021
Latest member
Justyna P

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