+ Reply to Thread
Results 1 to 5 of 5

Finding numbers missing from a sequence

  1. #1
    andy
    Guest

    Finding numbers missing from a sequence

    I've just been asked if there's a way Excel can easily find if there are
    missing numbers from a sequence of numbers in a column.

    For example, the column contains numbers between 1000 and 2000, but the user
    isn't sure if every number between 1000 and 2000 is present in the column,
    to possibly make it more interesting, each number may appear more than once
    in the column.

    Any ideas?

    Cheers,

    Andy



  2. #2
    Registered User
    Join Date
    02-25-2005
    Posts
    84
    you would either need to list all 1,000 numbers then perhaps a simple =countif formula.

    But the easiest way would be a loop macro.

    i = 1000
    do until i = 2000
    if i is not in range of cells then show number in a message box
    i = i + 1
    loop

  3. #3
    Jonathan Cooper
    Guest

    RE: Finding numbers missing from a sequence

    use a helper worksheet

    starting in cell A1, number from 1000 through 2000.
    starting in b1, use a formula =COUNTIF('good data'!$A$1:$A$2000,'helper
    sheet'!A1)
    copy formula from B1:B1000

    now do an autofilter on column B. Filter for value of 0.

    "andy" wrote:

    > I've just been asked if there's a way Excel can easily find if there are
    > missing numbers from a sequence of numbers in a column.
    >
    > For example, the column contains numbers between 1000 and 2000, but the user
    > isn't sure if every number between 1000 and 2000 is present in the column,
    > to possibly make it more interesting, each number may appear more than once
    > in the column.
    >
    > Any ideas?
    >
    > Cheers,
    >
    > Andy
    >
    >
    >


  4. #4
    Jim Rech
    Guest

    Re: Finding numbers missing from a sequence

    This is how I'd do it that is pretty easy:

    Say you have the numbers 2, 4 and 6 in the range A1:A3. You want to know
    which numbers from 1 to 10 are missing.

    -Enter the numbers 1 to 10 (use the Fill handle) in C1:C10.
    -Enter the formula:

    =IF(ISERROR(MATCH(C1,$A$1:$A$3,FALSE)),"x","")

    in D1 and copy it down to D10. Now every "x" represents a missing number.

    --
    Jim
    "andy" <andy@ajchard.co.uk> wrote in message
    news:42554c10$0$26341$db0fefd9@news.zen.co.uk...
    | I've just been asked if there's a way Excel can easily find if there are
    | missing numbers from a sequence of numbers in a column.
    |
    | For example, the column contains numbers between 1000 and 2000, but the
    user
    | isn't sure if every number between 1000 and 2000 is present in the column,
    | to possibly make it more interesting, each number may appear more than
    once
    | in the column.
    |
    | Any ideas?
    |
    | Cheers,
    |
    | Andy
    |
    |



  5. #5
    andy
    Guest

    Re: Finding numbers missing from a sequence

    Sorry, only just checked back for replies.

    Thanks to both of you for your help.

    Andy



+ 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