How to compare data between two sheets, extract the changed lines and copy into another sheet

frostworks

New Member
Joined
Jan 28, 2024
Messages
13
Office Version
  1. 365
Platform
  1. Windows
I have the following sheet below called Sheet 1.
There is another copy of Sheet 1 called Sheet 2.
Column D (Car) in Sheet 1 is editable.
Suppose someone using the sheet make changes to Column D in line Request ID 1 and Request ID 4,
how do i code a macro to compare and identify with Sheet 2 that D5 and D8 has been changed, and thus Row 5 and Row 8 will be copied into Sheet 3?
1707052851569.png
 

Excel Facts

Using Function Arguments with nested formulas
If writing INDEX in Func. Arguments, type MATCH(. Use the mouse to click inside MATCH in the formula bar. Dialog switches to MATCH.
I knew Excel has a feature to highlight changes...

I don't know it shall work for you or not...


or

 
Upvote 0
thanks for the tip! however, this will be part of a longer macro i'm coding, so i would still require the vba code to do it...
 
Upvote 0
Hi @frostworks

Here's some code to test:
VBA Code:
Option Explicit
Private Sub CompareSheets()
   Dim Sheet1 As Worksheet: Set Sheet1 = Worksheets("Sheet 1")
   Dim Sheet2 As Worksheet: Set Sheet2 = Worksheets("Sheet 2")
   Dim Sheet3 As Worksheet: Set Sheet3 = Worksheets("Sheet 3")
   Dim FirstRow As Long
   Dim LastRow As Long
   Dim CurrentRow As Long

   FirstRow = 5
   LastRow = 8

   For CurrentRow = FirstRow To LastRow
      If Sheet1.Range("D" & CurrentRow).Value <> Sheet2.Range("D" & CurrentRow).Value Then
         Sheet1.Rows(CurrentRow).Copy Sheet3.Rows(CurrentRow)
      End If
   Next CurrentRow
End Sub

Please note: This code will only work on the data range C4:F8
So if any changes are made on Sheet 1 column D5 to D8, the macro will find the changes and paste them on the exact same location in Sheet 3.

Here is the result:

Sheet 1
1707088164618.png


Sheet 2
1707088187390.png


Sheet 3 after the macro ran
1707088267802.png




If you want the VBA code to work with your data, you'll need to provide a little more information.
 
Upvote 0
Hi Pete!

Apologies for the late revert. that looks really useful! How do i go one step further and have the results in sheet 3 tucked nicely into the corner? intention is to have sheet 3 as a database of changed data.

THanks!
 
Upvote 0
This modification to @PeteWright's code writes the data to the left side of Sheet 3 starting from row 2.

I hope this is suitable for your use, but if you plan to use this in a practical application, a few notes about the operation.

1. Ranges are hardcoded
2. Sheet 1 and Sheet 3 areas must be the same size.
3. The row number of the rows to be compared must be the same on Sheet 1 and Sheet 2.
4. Rows to be added to Sheet 3 are not checked for duplicates. So the same change can be written on Sheet 3 every time it is executed.

VBA Code:
Private Sub CompareSheets()
Dim Sheet1 As Worksheet: Set Sheet1 = Worksheets("Sheet 1")
Dim Sheet2 As Worksheet: Set Sheet2 = Worksheets("Sheet 2")
Dim Sheet3 As Worksheet: Set Sheet3 = Worksheets("Sheet 3")
Dim FirstRow As Long
Dim LastRow As Long
Dim CurrentRow As Long

    FirstRow = 5
    LastRow = 8
        For CurrentRow = FirstRow To LastRow
           If Sheet1.Range("D" & CurrentRow).Value <> Sheet2.Range("D" & CurrentRow).Value Then
              Sheet1.Range("C" & CurrentRow & ":" & "F" & CurrentRow).Copy Sheet3.Range("A" & Sheet3.Cells(Rows.Count, "A").End(xlUp).Row + 1) ' This row is modified
           End If
        Next CurrentRow
End Sub

My apologies for any quirks, English is not my native language. "So I blame Google translate for all my goofs." :devilish:
 
Upvote 0
This modification to @PeteWright's code writes the data to the left side of Sheet 3 starting from row 2.

I hope this is suitable for your use, but if you plan to use this in a practical application, a few notes about the operation.

1. Ranges are hardcoded
2. Sheet 1 and Sheet 3 areas must be the same size.
3. The row number of the rows to be compared must be the same on Sheet 1 and Sheet 2.
4. Rows to be added to Sheet 3 are not checked for duplicates. So the same change can be written on Sheet 3 every time it is executed.

VBA Code:
Private Sub CompareSheets()
Dim Sheet1 As Worksheet: Set Sheet1 = Worksheets("Sheet 1")
Dim Sheet2 As Worksheet: Set Sheet2 = Worksheets("Sheet 2")
Dim Sheet3 As Worksheet: Set Sheet3 = Worksheets("Sheet 3")
Dim FirstRow As Long
Dim LastRow As Long
Dim CurrentRow As Long

    FirstRow = 5
    LastRow = 8
        For CurrentRow = FirstRow To LastRow
           If Sheet1.Range("D" & CurrentRow).Value <> Sheet2.Range("D" & CurrentRow).Value Then
              Sheet1.Range("C" & CurrentRow & ":" & "F" & CurrentRow).Copy Sheet3.Range("A" & Sheet3.Cells(Rows.Count, "A").End(xlUp).Row + 1) ' This row is modified
           End If
        Next CurrentRow
End Sub

My apologies for any quirks, English is not my native language. "So I blame Google translate for all my goofs." :devilish:
Thank you for sharing! unfortunately the use i have for it is unable to comply with conditions 1, 3 and 4.
 
Upvote 0

Forum statistics

Threads
1,215,071
Messages
6,122,963
Members
449,094
Latest member
Anshu121

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