+ Reply to Thread
Results 1 to 2 of 2

Cross check 7 to 8 digit numbers between two different sheets

  1. #1
    Registered User
    Join Date
    04-23-2009
    Location
    Philadelphia, PA
    MS-Off Ver
    Excel 2003
    Posts
    1

    Cross check 7 to 8 digit numbers between two different sheets

    Hi

    I am trying to figure out a formula to cross check 7 to 8 digit numbers on two different sheets and than some how flagging numbers which are only present on only one of the sheets .

    Thanks in advance,

    Regards,
    aKs

  2. #2
    Forum Guru DonkeyOte's Avatar
    Join Date
    10-22-2008
    Location
    Northumberland, UK
    MS-Off Ver
    O365
    Posts
    21,531

    Re: Cross check 7 to 8 digit numbers between two different sheets

    You can use MATCH in conjunction with ISNUMBER (or ISNA) to do this...

    Assume list one is on Sheet1 Column A, first record in A1... and Sheet2 Column A holds the other list... to determine if Sheet1!A1 exists on Sheet2

    Sheet1!B1: =ISNUMBER(MATCH(A1,Sheet2!A:A,0))
    copy down for all entries in A

    result of TRUE means - A1 exists in Column A on Sheet2 ... FALSE means does not exist

    You can apply the same logic to the other sheet (altering the references accordingly - ie Sheet1 rather than Sheet2)

    Be sure to check out XL Help for more info on the above Functions if you are unfamiliar.

+ 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