I have 2 worksheets, sheet1 is the main database with 10 columns and over 9000+ rows, while sheet2 has prices and inventory for over 9000+ items. sheet1 has "ItemNo", so does sheet2, I need to make sure that sheet1 and sheet2 both have that same "ItemNo", if they do it will copy the prices and inventory from sheet2 over to sheet1.
I cant copy paste the prices or inventory because the "ItemNo" are not in a consistent order. It will only copy Inventory and price if "ItemNo" in sheet1 matches "ItemNo" in sheet2.
Below is an example:
Sheet1
[TABLE="width: 500"]
<tbody>[TR]
[TD]ItemNo
[/TD]
[TD]Description
[/TD]
[TD]UPC
[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
Sheet2
[TABLE="width: 500"]
<tbody>[TR]
[TD]ItemNo
[/TD]
[TD]Price
[/TD]
[TD]Inventory
[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
Final Data should look like this:
[TABLE="width: 500"]
<tbody>[TR]
[TD]ItemNo
[/TD]
[TD]Description
[/TD]
[TD]UPC
[/TD]
[TD]Price
[/TD]
[TD]Inventory
[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
Thank you
I cant copy paste the prices or inventory because the "ItemNo" are not in a consistent order. It will only copy Inventory and price if "ItemNo" in sheet1 matches "ItemNo" in sheet2.
Below is an example:
Sheet1
[TABLE="width: 500"]
<tbody>[TR]
[TD]ItemNo
[/TD]
[TD]Description
[/TD]
[TD]UPC
[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
Sheet2
[TABLE="width: 500"]
<tbody>[TR]
[TD]ItemNo
[/TD]
[TD]Price
[/TD]
[TD]Inventory
[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
Final Data should look like this:
[TABLE="width: 500"]
<tbody>[TR]
[TD]ItemNo
[/TD]
[TD]Description
[/TD]
[TD]UPC
[/TD]
[TD]Price
[/TD]
[TD]Inventory
[/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
[TR]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[TD][/TD]
[/TR]
</tbody>[/TABLE]
Thank you