+ Reply to Thread
Results 1 to 4 of 4

Compare column B - If exists then update date, else copy to end

Hybrid View

jimbob121 Compare column B - If exists... 08-06-2011, 01:55 PM
JBeaucaire Re: Compare column B - If... 08-06-2011, 02:06 PM
tigeravatar Re: Compare column B - If... 08-06-2011, 02:06 PM
jimbob121 Re: Compare column B - If... 08-06-2011, 02:21 PM
  1. #1
    Registered User
    Join Date
    08-24-2010
    Location
    glasgow
    MS-Off Ver
    Excel 2003
    Posts
    29

    Compare column B - If exists then update date, else copy to end

    Hi all

    I am looking for some help with a macro. I am looking to use the value in column B on sheet 1 to check if they exist on sheet 2 column B. If they do exist then copy the data from sheet 1 to sheet 2 in order to update the data. If the data does not exist then copy the data to the end of the data on sheet 2. I am trying to consolidate some reports so need to copy the data as is. So on finding a match only copy the data on the row, in the example columns A to D, not the full row as this would upset the data that will be on my proper data.

    Many thanks for any help in advance

    Jim
    Attached Files Attached Files
    Last edited by jimbob121; 08-06-2011 at 02:23 PM.

  2. #2
    Forum Expert JBeaucaire's Avatar
    Join Date
    03-21-2004
    Location
    Bakersfield, CA
    MS-Off Ver
    2010, 2016, Office 365
    Posts
    33,492

    Re: Compare column B - If exists then update date, else copy to end

    This should do it:
    Option Explicit
    
    Sub UpdateSheet2()
    Dim ws1 As Worksheet    'source data
    Dim ws2 As Worksheet    'target
    Dim vFIND As Range
    Dim MyV As Range
    Dim NR As Long
    
    Set ws1 = Sheets("Sheet1")
    Set ws2 = Sheets("Sheet2")
    
    NR = ws2.Range("A" & ws2.Rows.Count).End(xlUp).Row + 1
    On Error Resume Next
    
    For Each MyV In ws1.Range("B2", ws1.Range("B" & ws1.Rows.Count).End(xlUp))
        Set vFIND = ws2.Range("B:B").Find(MyV, LookIn:=xlValues, LookAt:=xlWhole)
        If Not vFIND Is Nothing Then
            ws2.Rows(vFIND.Row).Value = ws1.Rows(MyV.Row).Value
            Set vFIND = Nothing
        Else
            ws2.Rows(NR).Value = ws1.Rows(MyV.Row).Value
            NR = NR + 1
        End If
    Next MyV
    
    End Sub
    _________________
    Microsoft MVP 2010 - Excel
    Visit: Jerry Beaucaire's Excel Files & Macros

    If you've been given good help, use the icon below to give reputation feedback, it is appreciated.
    Always put your code between code tags. [CODE] your code here [/CODE]

    ?None of us is as good as all of us? - Ray Kroc
    ?Actually, I *am* a rocket scientist.? - JB (little ones count!)

  3. #3
    Forum Expert tigeravatar's Avatar
    Join Date
    03-25-2011
    Location
    Colorado, USA
    MS-Off Ver
    Excel 2003 - 2013
    Posts
    5,361

    Re: Compare column B - If exists then update date, else copy to end

    Jim,

    Something like this?
    Sub tgr()
        
        Static ws1 As Worksheet: Set ws1 = Sheets("Sheet1")
        Static ws2 As Worksheet: Set ws2 = Sheets("Sheet2")
        Static ur As Range: Set ur = ws1.UsedRange
        Static rngB As Range: Set rngB = Intersect(ur.Offset(1).Resize(ur.Rows.Count - 1), ws1.[B:B])
        If rngB Is Nothing Then Exit Sub
        
        Dim BCell As Range, BFound As Range
        For Each BCell In rngB
            Set BFound = Nothing
            Set BFound = ws2.[B:B].Find(Trim(BCell.Value))
            If Not BFound Is Nothing Then
                ws2.Cells(BFound.Row, "A").Resize(1, 4).Value = ws1.Cells(BCell.Row, "A").Resize(1, 4).Value
            Else
                ws2.Cells(Rows.Count, "A").End(xlUp).Offset(1, 0).Resize(1, 4).Value = ws1.Cells(BCell.Row, "A").Resize(1, 4).Value
            End If
        Next BCell
        
    End Sub


    Hope that helps,
    ~tigeravatar

  4. #4
    Registered User
    Join Date
    08-24-2010
    Location
    glasgow
    MS-Off Ver
    Excel 2003
    Posts
    29

    Re: Compare column B - If exists then update date, else copy to end

    tigeravatar and JBeaucaire

    Both codes work very well. Should be able to adapt.

    Many thanks to both of you!!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1