I'm not an excel power user by any means, so i'm having trouble getting a column in one worksheet to compare against the same column in another worksheet.
I have two different worksheets in the same workbook each sheet contains a different data with the exception of one column. The columns contains a five digit number and between the two columns the cells in the row may or may not be the match and not be in sequential order.
What I would like to preform as an example would be the comparison of Column A in worksheet 1 to Column A (or whatever column the data is in) of worksheet 2. Two options in returning value would be fine although one is preferred.
Example
Worksheet 1.
Rows Column A
Row 1 12345
Row 2 67890
Row 3 09876
Row 4 54321
Worksheet 2
Rows Column A
Row 1 12345 – Matches Worksheet 1 Row 1
Row 2 75984
Row 3 09876
Row 4 67890 – Matches Worksheet 1 Row 2
Row 5 15935
Row 6 09876 – Matches Worksheet 1 Row 3
Row 7 78963
Row 8 67890 – Matches Worksheet 1 Row 2
Row 9 09876 – Matches Worksheet 1 Row 3
Row 10 78963
Row 11 54321 – Matches Worksheet 1 Row 4
Desired Result 1 (Preferred) – Any item in Worksheet 2 Column A that matched a number in Worksheet 1 Column A, the entire record (entire row of data) would be pulled from Worksheet 2 and put into a new worksheet 3.
Worksheet 3 – Would like look this; only the rows that matched a number in worksheet 1 pulled over. When I say entire row I mean columns A through M work of data.
Rows Column A
Row 1 12345 – Matched Worksheet 1 Row 1
Row 4 67890 – Matched Worksheet 1 Row 2
Row 6 09876 – Matched Worksheet 1 Row 3
Row 8 67890 – Matched Worksheet 1 Row 2
Row 9 09876 – Matched Worksheet 1 Row 3
Row 11 54321 – Matched Worksheet 1 Row 4
Desired Result 2 – Any item in Worksheet 2 Column A that matched a number in Worksheet 1 Column A, the number in Worksheet 2 Column A would highlight.
Worksheet 3 – Would like look this
Rows Column A
Row 1 12345 – Number would highlight because of match to Worksheet 1 Row 1
Row 2 75984
Row 3 09876
Row 4 67890 – Number would highlight because of match to Row 2
Row 5 15935
Row 6 09876 – Number would highlight because of match to Row 3
Row 7 78963
Row 8 67890 – Number would highlight because of match to Row 2
Row 9 09876 – Number would highlight because of match to Row 3
Row 10 78963
Row 11 54321 – Number would highlight because of match to Row 4
I don't know if this needs to be a conditional formatting item or VBA, etc. I would greatly apprecaite any help anyone could provided. I'm staring at a wall.
Jump
I have two different worksheets in the same workbook each sheet contains a different data with the exception of one column. The columns contains a five digit number and between the two columns the cells in the row may or may not be the match and not be in sequential order.
What I would like to preform as an example would be the comparison of Column A in worksheet 1 to Column A (or whatever column the data is in) of worksheet 2. Two options in returning value would be fine although one is preferred.
Example
Worksheet 1.
Rows Column A
Row 1 12345
Row 2 67890
Row 3 09876
Row 4 54321
Worksheet 2
Rows Column A
Row 1 12345 – Matches Worksheet 1 Row 1
Row 2 75984
Row 3 09876
Row 4 67890 – Matches Worksheet 1 Row 2
Row 5 15935
Row 6 09876 – Matches Worksheet 1 Row 3
Row 7 78963
Row 8 67890 – Matches Worksheet 1 Row 2
Row 9 09876 – Matches Worksheet 1 Row 3
Row 10 78963
Row 11 54321 – Matches Worksheet 1 Row 4
Desired Result 1 (Preferred) – Any item in Worksheet 2 Column A that matched a number in Worksheet 1 Column A, the entire record (entire row of data) would be pulled from Worksheet 2 and put into a new worksheet 3.
Worksheet 3 – Would like look this; only the rows that matched a number in worksheet 1 pulled over. When I say entire row I mean columns A through M work of data.
Rows Column A
Row 1 12345 – Matched Worksheet 1 Row 1
Row 4 67890 – Matched Worksheet 1 Row 2
Row 6 09876 – Matched Worksheet 1 Row 3
Row 8 67890 – Matched Worksheet 1 Row 2
Row 9 09876 – Matched Worksheet 1 Row 3
Row 11 54321 – Matched Worksheet 1 Row 4
Desired Result 2 – Any item in Worksheet 2 Column A that matched a number in Worksheet 1 Column A, the number in Worksheet 2 Column A would highlight.
Worksheet 3 – Would like look this
Rows Column A
Row 1 12345 – Number would highlight because of match to Worksheet 1 Row 1
Row 2 75984
Row 3 09876
Row 4 67890 – Number would highlight because of match to Row 2
Row 5 15935
Row 6 09876 – Number would highlight because of match to Row 3
Row 7 78963
Row 8 67890 – Number would highlight because of match to Row 2
Row 9 09876 – Number would highlight because of match to Row 3
Row 10 78963
Row 11 54321 – Number would highlight because of match to Row 4
I don't know if this needs to be a conditional formatting item or VBA, etc. I would greatly apprecaite any help anyone could provided. I'm staring at a wall.
Jump