+ Reply to Thread
Results 1 to 6 of 6

is this search possible?

Hybrid View

  1. #1
    Registered User
    Join Date
    07-19-2007
    Posts
    4

    is this search possible?

    I have a list of 2000 sku's in column a and a list of about 3000 sku's in column b. I need to know what numbers are in column a that are not in column b, but there are lots of duplicates within each column.

    Is it possible to show the numbers in column a that are not in column b WITHOUT taking into account the duplicates already in column a?

  2. #2
    Forum Expert oldchippy's Avatar
    Join Date
    02-14-2005
    Location
    Worcester, UK
    MS-Off Ver
    Excel 2007 (Home)
    Posts
    7,097
    sku's???

    Try this, with your longer list in column A and the shorter list in column B, put this in C1

    =IF(COUNTIF($B$1:$B$181,A1)=0,A1,"") then press Ctrl+Shift+Enter then drag down column C, this will show
    listed in A and NOT in B
    oldchippy
    -------------


    Blessed are those who can give without remembering and take without forgetting

    If you are happy with the help you have received, please click the <--- STAR icon on the left - Thanks.

    Click here >>> Top Excel links for beginners to Experts

    Forum Rules >>>Please don't forget to read these

  3. #3
    Forum Expert daddylonglegs's Avatar
    Join Date
    01-14-2006
    Location
    England
    MS-Off Ver
    Microsoft 365
    Posts
    14,698
    You could use conditional formatting to colour the first instance only of any SKU appearing in column A that doesn't appear in column B

    Select column A

    Format > conditional formatting > "formula is" option with formula

    =ISNA(MATCH(A1,B:B,0))*(COUNTIF(A$1:A1,A1)=1)

    select desired colour pattern, OK

    or you could use a similar formula on the worksheet, in C1 copied down

    =IF(ISNA(MATCH(A1,B:B,0))*(COUNTIF(A$1:A1,A1)=1), A1,"")

  4. #4
    Registered User
    Join Date
    07-19-2007
    Posts
    4
    conditional formatting worked great!! thanks so much ...

  5. #5
    Registered User
    Join Date
    09-03-2003
    Location
    UK
    Posts
    95
    Hi oldchippy,
    Just for your information, SKU's = Stock Keeping Units
    Stuart

  6. #6
    Forum Expert oldchippy's Avatar
    Join Date
    02-14-2005
    Location
    Worcester, UK
    MS-Off Ver
    Excel 2007 (Home)
    Posts
    7,097
    Ah yes of course it is

    Glad you got sorted anyway

+ 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