+ Reply to Thread
Results 1 to 2 of 2

Two workbooks and need text changed after comparing them

Hybrid View

  1. #1
    Registered User
    Join Date
    07-14-2009
    Location
    England
    MS-Off Ver
    Excel 2007
    Posts
    43

    Two workbooks and need text changed after comparing them

    I'm hoping someone can help me because I'm really stumped.

    1) I have two workbooks (sample1 & sample2). I need to be able to compare values in column A on both sheets.
    2) IF a value in column A for sample1 matches a value in column A in sample2 I need column B values in sample2 to replace existing column B values in sample1
    3) I have other data in columns C&D in both samples but those need to stay unchanged.

    Could someone please help? This would make my day!!
    Thank you!
    ~S
    Attached Files Attached Files

  2. #2
    Forum Expert
    Join Date
    12-14-2012
    Location
    London England
    MS-Off Ver
    MS 365 Office Suite.
    Posts
    8,448

    Re: Two workbooks and need text changed after comparing them

    Very easily done

    Click on the button to run this macro
    The two files must be open

    Sub Macro5()
    
    'Ok these are common formulas that I often need.
    'I have a macro that pastes then into any spreadsheet
    'I then delete the ones I don't need'
    '
    'This finds the last used cell in column A. could be improved to cells(Row.count,1).End(xlUp).Row
    'The Row.count returns the maximum number of rows supported by the version of excel that you are using.
    '
    LR = Range("A65536").End(xlUp).Row
    '
    'This finds the last used cell in Row. could be improved to cells(1,Columns.count).End(xltoLeft).Column.
    '
    LC = Range("IV1").End(xlToLeft).Column
    '
    'This returns the Address of the last used cell on the spreadsheet
    LCell = Selection.SpecialCells(xlCellTypeLastCell).Address
    '
    ' This returns the column of the last used cell
    '
    LCC = Selection.SpecialCells(xlCellTypeLastCell).Column
    '
    ''This returns the row of the last used cell
    LCR = Selection.SpecialCells(xlCellTypeLastCell).Row
    
    'People often have problems like your so I am creating a flexible solution
    'Based on your request
    'So I am using variables to store your search parameters
    '
    'Search Column in Master
    Master = "Sample1.xlsm"
    SearchCol1 = "A"
    Target = "B"
    
    'Search Column in Import
    Export = "sample2.xlsx"
    SearchCol2 = "A"
    
    'So this is These are the columns that I am interested in
    Emptycol = Selection.SpecialCells(xlCellTypeLastCell).Column + 1
    TargetCol = Range(Target & 1).Column
    SearchcolN1 = Range(SearchCol1 & 1).Column
    SearchColN2 = Range(SearchCol2 & 1).Column
    
    'These are are the last used cells in those columns
    LR = Cells("65536", SearchcolN1).End(xlUp).Row
    LR2 = Workbooks(Export).Sheets(1).Cells("65536", SearchColN2).End(xlUp).Row
    
    'I fill the column next to my search column with a formula to find the matching data on the import file
    'I used the macro recorder to create the formula and then edited it to insert my variables
    
    Range(Cells(2, Emptycol), Cells(LR, Emptycol)).Select
    Selection.FormulaR1C1 = _
    "=if(isna(MATCH(RC" & SearchcolN1 & ",[" & Export & "]Sheet1!R1C" & SearchColN2 & ":R" & LR2 & "C" & SearchColN2 & ",0)),RC[" & TargetCol - Emptycol & "],index([" & Export & "]Sheet1!R1C" & TargetCol & ":R" & LR2 & "C" & TargetCol & ",MATCH(RC" & SearchcolN1 & ",[" & Export & "]Sheet1!R1C" & SearchColN2 & ":R" & LR2 & "C" & SearchColN2 & ",0)))"
    
    'This is a copy paste value
    Range(Cells(2, TargetCol), Cells(LR, Target)).Value = Selection.Value
    
    Columns(Emptycol).Delete
    
    Range("A1").Select
    
    End Sub
    Attached Files Attached Files
    Last edited by mehmetcik; 12-18-2014 at 11:13 AM.
    My General Rules if you want my help. Not aimed at any person in particular:

    1. Please Make Requests not demands, none of us get paid here.

    2. Check back on your post regularly. I will not return to a post after 4 days.
    If it is not important to you then it definitely is not important to me.

+ Reply to Thread

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Replies: 6
    Last Post: 07-16-2014, 04:27 PM
  2. comparing two workbooks
    By Kenrhoover in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 08-20-2012, 04:55 PM
  3. Comparing Two Workbooks
    By Corey0305 in forum Excel General
    Replies: 1
    Last Post: 05-12-2008, 05:03 PM
  4. Comparing workbooks?
    By guffyuk in forum Excel - New Users/Basics
    Replies: 2
    Last Post: 12-30-2007, 08:03 PM
  5. Comparing Workbooks
    By JS in forum Excel General
    Replies: 2
    Last Post: 10-21-2005, 09:05 AM

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