+ Reply to Thread
Results 1 to 9 of 9

Thread: Comparing two sets of data

  1. #1
    Registered User
    Join Date
    07-29-2011
    Location
    London, England
    MS-Off Ver
    Excel 2003
    Posts
    11

    Comparing two sets of data

    Hi,

    I have two sets of data I need to compare and I need put conditions to find out where an argument is true between the two sets.

    For example:

    Dataset 1, column A1 e-mail (E-mail1), column B1 date (Date1)
    Dataset 2, column A2 e-mail (E-mail2), column B2 date (Date2)

    I need to lookup E-mail 1 in column A2, if E-mail1 exists in A2 then I need to check that Date1 is within 30 days of Date 2.

    Hope that makes sense.

    Thanks,
    Anthony

  2. #2
    Forum Guru NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    32,636

    Re: Comparing two sets of data

    =ABS(SUMIF('Sheet2'!A:A,A2,'Sheet2'!B:B)-B2)<=30

    This assumes one match, if any, in dataset2 (sheet2).

    This finds the date in Sheet2 column B for item in Column A that matches A2 in current sheet, and subtracts from B2's date. If the Absolute value of that is less than or equal to 30, then TRUE is returned, which means the date difference is less than or equal to 30 days either way, if you need only one way, then remove the ABS() function and rearrange the SUMIF and B2 arguments, if necessary.
    Microsoft MVP - Excel

    Where there is a will there are many ways. Pick One!


    Please read the Forum Rules

    If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below

    Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.

    Preferred Charities: Lupus Canada and Sick Kids Foundation.
    Feel Free to Donate if you want to, for the assistance you received today.

  3. #3
    Valued Forum Contributor Fotis1991's Avatar
    Join Date
    10-11-2011
    Location
    Athens Greece
    MS-Off Ver
    Excel 2003
    Posts
    2,297

    Re: Comparing two sets of data

    Hi

    Maybe something like this in C2.

    =IF(AND(A1=A2;B2<=(B1+30));"ok";"no")

    Change the semi-colons to gomma, if you have to do it.
    Regards

    Fotis.

    I am proud that i am Greek.

    Just to know every one.We Greeks, we are nοt proud of our politicians. Υou?

    Remember, saying thanks only takes a second or two. Click the little star * below, to give some Rep if you think an answer deserves it.

    Please,mark your thread [SOLVED] if you received your answer.


    My Avadar picture, is from Athens Acropolis.
    http://www.theacropolismuseum.gr

    http://www.visitgreece.gr/

  4. #4
    Registered User
    Join Date
    07-29-2011
    Location
    London, England
    MS-Off Ver
    Excel 2003
    Posts
    11

    Re: Comparing two sets of data

    In some cases there may be more than one match. This is an awesome response for the problem but is there anyway to widen the search to the closest possible match for date1?

    Thanks,
    Anthony

  5. #5
    Forum Guru NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    32,636

    Re: Comparing two sets of data

    Maybe:

    =ABS(MIN(IF('Sheet2'!$A$1:$A$100=A2,'Sheet2'!$B$1:$B$100))-B2)<=30

    confirmed with CTRL+SHIFT+ENTER
    not just ENTER

    This checks the MIN date in A1:A100 against the date in B2... is this okay or does it need further refining?
    Microsoft MVP - Excel

    Where there is a will there are many ways. Pick One!


    Please read the Forum Rules

    If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below

    Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.

    Preferred Charities: Lupus Canada and Sick Kids Foundation.
    Feel Free to Donate if you want to, for the assistance you received today.

  6. #6
    Registered User
    Join Date
    07-29-2011
    Location
    London, England
    MS-Off Ver
    Excel 2003
    Posts
    11

    Re: Comparing two sets of data

    But the sumif was checking that the data was there (i.e. picking up the data corresponding to the e-mail) does the "min" not just take the smallest overall value from sheet 2 wether or not it is related to the same e-mail?

  7. #7
    Forum Guru NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    32,636

    Re: Comparing two sets of data

    The MIN(IF()) is still basing it on the condition that 'Sheet2'!$A$1:$A$100=A2 and returns the min (oldest) date... maybe it should be MAX(IF()) to find latest date??

    We can add the Sumif, actuall Countif will do... to check for match also...

    =IF(COUNTIF('Sheet2'!$A$1:$A$100,A2)=0,"no match found",ABS(MAX(IF('Sheet2'!$A$1:$A$100=A2,'Sheet2'!$B$1:$B$100))-B2)<=30)

    confirmed with CTRL+SHIFT+ENTER
    Microsoft MVP - Excel

    Where there is a will there are many ways. Pick One!


    Please read the Forum Rules

    If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below

    Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.

    Preferred Charities: Lupus Canada and Sick Kids Foundation.
    Feel Free to Donate if you want to, for the assistance you received today.

  8. #8
    Registered User
    Join Date
    07-29-2011
    Location
    London, England
    MS-Off Ver
    Excel 2003
    Posts
    11

    Re: Comparing two sets of data

    =(MIN(IF(Sheet2!$A$1:$A$3788=A2,Sheet2!$B$1:$B$3788))-B2)<=30

    This formula seems to work best however I'm getting some anomalies where the results is lees than zero. Is there a way of saying <=30 but >=0?

    Thanks,
    Anthony

  9. #9
    Forum Guru NBVC's Avatar
    Join Date
    12-06-2006
    Location
    Mississauga, CANADA
    MS-Off Ver
    2003:2010
    Posts
    32,636

    Re: Comparing two sets of data

    You mean?

    =AND((MIN(IF(Sheet2!$A$1:$A$3788=A2,Sheet2!$B$1:$B$3788))-B2)>=30,(MIN(IF(Sheet2!$A$1:$A$3788=A2,Sheet2!$B$1:$B$3788))-B2)<=30))
    Microsoft MVP - Excel

    Where there is a will there are many ways. Pick One!


    Please read the Forum Rules

    If you are happy with the results, please add to the contributor's reputation by clicking the reputation icon (star icon) below

    Please also mark the thread as Solved once it is solved. Check the FAQ's to see how.

    Preferred Charities: Lupus Canada and Sick Kids Foundation.
    Feel Free to Donate if you want to, for the assistance you received today.

+ 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.2.0