Move items from one sheet to another

thepartydj

Active Member
Joined
Sep 23, 2004
Messages
261
Office Version
  1. 365
Platform
  1. Windows
I have two sheets in the same file.

Both sheets share a column A called "Item ID"

This "item id" is already filled in on each sheet. Sheet 1 has 1,000 more item id than sheet 2

Two options...
a. Please help me filter out or find the duplicates between the two sheets.
b. Move Column B "item number"

1654272638067.png
1654272682710.png
 

Excel Facts

Bring active cell back into view
Start at A1 and select to A9999 while writing a formula, you can't see A1 anymore. Press Ctrl+Backspace to bring active cell into view.
Hello!

a. To additional column at Sheet1:
Excel Formula:
=IF(NOT(SUMPRODUCT((A2=Sheet2!$A$2:$A$20)+0));1;"")
, where A2 - highest cell with Item ID at Sheet1 and $A$2:$A$20 - item ID range address at Sheet2.
This formula returns 1, if cell value is in column at Sheet1, but not in column at the Sheet2. Otherwise returns empty.

b. To Item # column at Sheet2:
Excel Formula:
=INDEX(Sheet1!$A$2:$B$20;MATCH(A2;Sheet1!$A$2:$A$20;0);2)
, where $A$2:$A$20 - item ID range address at Sheet1; $A$2:$B$20 - address of range with Item ID and Item #, 2 - column with Item # number of this range.
 
Upvote 0

Forum statistics

Threads
1,215,537
Messages
6,125,390
Members
449,222
Latest member
taner zz

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