+ Reply to Thread
Results 1 to 17 of 17

Comparing two columns with two conditions

  1. #1
    Registered User
    Join Date
    11-15-2011
    Location
    Ireland
    MS-Off Ver
    Excel 2010
    Posts
    27

    Comparing two columns with two conditions

    Hello,

    I would appreciate any help on this problem. I'm trying to compare the "A" column on two sheets (Sheet1 and Upd_Dump) and if they values equal to copy over the row (A:HM) from Upd_Dump to Sheet1. I am having some trouble with code below. Any feeback would be helpful?

    Luke

    Please Login or Register  to view this content.

  2. #2
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,167

    Re: Comparing two columns with two conditions

    Are you getting any error? On which line?
    If I have helped, Don't forget to add to my reputation (click on the star below the post)
    Don't forget to mark threads as "Solved" (Thread Tools->Mark thread as Solved)
    Use code tags when posting your VBA code: [code] Your code here [/code]

  3. #3
    Registered User
    Join Date
    11-15-2011
    Location
    Ireland
    MS-Off Ver
    Excel 2010
    Posts
    27

    Re: Comparing two columns with two conditions

    Quote Originally Posted by arlu1201 View Post
    Are you getting any error? On which line?
    I'm getting "Run-time error '1004': Method 'Range' of object '_Global' failed" and refers to line

    Please Login or Register  to view this content.

  4. #4
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,167

    Re: Comparing two columns with two conditions

    Precede these rows
    Please Login or Register  to view this content.
    with Data_2.

    You cannot just use Range without the corresponding sheet name.

  5. #5
    Registered User
    Join Date
    11-15-2011
    Location
    Ireland
    MS-Off Ver
    Excel 2010
    Posts
    27

    Re: Comparing two columns with two conditions

    Thanks for you help but tried this below to the same error

    Please Login or Register  to view this content.

  6. #6
    Forum Expert
    Join Date
    03-28-2012
    Location
    TBA
    MS-Off Ver
    Office 365
    Posts
    12,454

    Re: Comparing two columns with two conditions

    Try this code

    Please Login or Register  to view this content.
    Last edited by AB33; 11-01-2012 at 08:32 AM.

  7. #7
    Registered User
    Join Date
    11-15-2011
    Location
    Ireland
    MS-Off Ver
    Excel 2010
    Posts
    27

    Re: Comparing two columns with two conditions

    Quote Originally Posted by AB33 View Post
    Try this code

    Please Login or Register  to view this content.
    I can't seem to get this to work, can you explain it a little more? Especially

    Please Login or Register  to view this content.

  8. #8
    Forum Expert
    Join Date
    03-28-2012
    Location
    TBA
    MS-Off Ver
    Office 365
    Posts
    12,454

    Re: Comparing two columns with two conditions

    You are trying to compare columns A of sheet 1 with columns A of sheet ("Upd_Dump").
    You can replace this line Columns(1). with Column("A:A").
    I did test it on my dummy data and it worked. What the code says, look for the value of C2 (which is the cell in sheet
    ("Upd_Dump"). in sheet 1. If it found it, copy the value of C2 in to sheet 1.

  9. #9
    Registered User
    Join Date
    11-15-2011
    Location
    Ireland
    MS-Off Ver
    Excel 2010
    Posts
    27

    Re: Comparing two columns with two conditions

    First of all, i would like to thank you for help so far. I might have initially explained the problem, how do you change the code to reflect this?

    If c2 is contained on sheet1, replace that row on sheet1 with c2
    if c2 is not contained on sheet copy to sheet1.

    I really appreciate it!

  10. #10
    Valued Forum Contributor
    Join Date
    11-15-2008
    Location
    ph
    MS-Off Ver
    2007/2010/2016
    Posts
    479

    Re: Comparing two columns with two conditions

    Hi -

    Change these lines;
    Please Login or Register  to view this content.
    to;

    Please Login or Register  to view this content.
    check also the variable named "appNum_stat"

    Regards,
    event

  11. #11
    Registered User
    Join Date
    11-15-2011
    Location
    Ireland
    MS-Off Ver
    Excel 2010
    Posts
    27

    Re: Comparing two columns with two conditions

    Thanks event for your help. Can I have gotten the macro working the way i want but it only works when i am in Sheet1. If i were in Upd-Dump Sheet it doesn't work. I know I'm probably missing a reference somewhere but I can't find it. Anyone help?

    Please Login or Register  to view this content.

  12. #12
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,167

    Re: Comparing two columns with two conditions

    Generally, if i need to compare 2 sheets, i use a temp sheet where i pull in the contents of both the sheets into it and i also have a column to identify which sheet the data came from.
    I sort the data in the temp sheet and do the comparisons and then copy the data wherever it needs to go.

    See if this logic works for you. If you need help, i can assist.

  13. #13
    Registered User
    Join Date
    11-15-2011
    Location
    Ireland
    MS-Off Ver
    Excel 2010
    Posts
    27

    Re: Comparing two columns with two conditions

    Quote Originally Posted by arlu1201 View Post
    Generally, if i need to compare 2 sheets, i use a temp sheet where i pull in the contents of both the sheets into it and i also have a column to identify which sheet the data came from.
    I sort the data in the temp sheet and do the comparisons and then copy the data wherever it needs to go.

    See if this logic works for you. If you need help, i can assist.
    Thanks for that and the logic is sound. I'm trying to get the macro working as it has to be used by others even less skilled at excel than me. I'm still to work why the macro works when I am in one worksheet and not another.

  14. #14
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,167

    Re: Comparing two columns with two conditions

    Can you upload a sample please?

  15. #15
    Registered User
    Join Date
    11-15-2011
    Location
    Ireland
    MS-Off Ver
    Excel 2010
    Posts
    27

    Re: Comparing two columns with two conditions

    The problem is when i run the macro on one sheet it has a different outcome than when run the macro on a different sheet
    Attached Files Attached Files

  16. #16
    Forum Contributor arlu1201's Avatar
    Join Date
    09-09-2011
    Location
    Bangalore, India
    MS-Off Ver
    Excel 2003 & 2007
    Posts
    19,167

    Re: Comparing two columns with two conditions

    Dont sheet1 and the other sheet have the same headers? I see that both have varying number of columns.

  17. #17
    Registered User
    Join Date
    11-15-2011
    Location
    Ireland
    MS-Off Ver
    Excel 2010
    Posts
    27

    Re: Comparing two columns with two conditions

    They do have the same headers and both have the same number of columns. If they are blank in the sample it is because the data is missing but it will be used.

+ 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