Extracting matched observation and its corresponding row
Closed
Abhi88
-
Feb 5, 2016 at 04:18 AM
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen January 16, 2023 - Feb 9, 2016 at 11:47 AM
TrowaD Posts 2921 Registration date Sunday September 12, 2010 Status Moderator Last seen January 16, 2023 - Feb 9, 2016 at 11:47 AM
Related:
- Extracting matched observation and its corresponding row
- How to delete a row in word - Guide
- Saints row download - Download - Action and adventure
- Excel match two columns and output third ✓ - Excel Forum
- Excel auto insert row when data changes ✓ - Excel Forum
1 reply
TrowaD
Posts
2921
Registration date
Sunday September 12, 2010
Status
Moderator
Last seen
January 16, 2023
547
Feb 9, 2016 at 11:47 AM
Feb 9, 2016 at 11:47 AM
Hi Abhi88,
In the code below the source sheet is refered to as Sheet1 and the destination sheet as Sheet2.
Make sure both sheets are present in your workbook and named accordingly. Or adjust the sheet names in the code (Sheet1 is found on code line 4, Sheet2 is found on code line 9).
Here is the code:
Best regards,
Trowa
In the code below the source sheet is refered to as Sheet1 and the destination sheet as Sheet2.
Make sure both sheets are present in your workbook and named accordingly. Or adjust the sheet names in the code (Sheet1 is found on code line 4, Sheet2 is found on code line 9).
Here is the code:
Sub RunMe() Dim mCell As Range Sheets("Sheet1").Select For Each cell In Range("AA2:AA" & Range("AA" & Rows.Count).End(xlUp).Row) Set mCell = Columns("A:A").Find(cell.Value) Range(Range("A" & mCell.Row), Range("K" & mCell.Row)).Copy _ Sheets("Sheet2").Range("A" & Rows.Count).End(xlUp).Offset(1, 0) Next cell End Sub
Best regards,
Trowa