+ Reply to Thread
Results 1 to 12 of 12

How to find missing numbers from a list in excel 2010?

  1. #1
    Registered User
    Join Date
    03-11-2013
    Location
    Visakhapatnam , india
    MS-Off Ver
    Excel 2010
    Posts
    5

    How to find missing numbers from a list in excel 2010?

    I am using excel- 2010. I want to find the missing numbers from a list of numbers sequence.
    i tried the array formula by searching some sites on Google but is not working properly. i am getting only one missing number but unable to find all of them.
    And also ia m having problem with amending the formula according to my need can any one explain be how to write the formula in-detail to find the missing numbers??

  2. #2
    Forum Expert Pepe Le Mokko's Avatar
    Join Date
    05-14-2009
    Location
    Belgium
    MS-Off Ver
    O365 v 2402
    Posts
    13,447

    Re: How to find missing numbers from a list in excel 2010?

    Attach a sample workbook. Make sure there is just enough data to make it clear what is needed. Include BEFORE/AFTER sheets if needed to show the process you're trying to complete or automate. Remember to desensitize the data.

    Click on GO ADVANCED and use the paperclip icon to open the upload window.

    View Pic

  3. #3
    Registered User
    Join Date
    03-11-2013
    Location
    Visakhapatnam , india
    MS-Off Ver
    Excel 2010
    Posts
    5

    Re: How to find missing numbers from a list in excel 2010?

    excel.JPG

    I want to find the missing numbers from 11 to 64 in the list. Here FROM and TO in the sense, the numbers which are in between these cells are not required as missing but i need the numbers which are missing from the values mentioned in both columns. So how to find them using a formula or any other methods??

  4. #4
    Administrator FDibbins's Avatar
    Join Date
    12-29-2011
    Location
    Duncansville, PA USA
    MS-Off Ver
    Excel 7/10/13/16/365 (PC ver 2310)
    Posts
    52,926

    Re: How to find missing numbers from a list in excel 2010?

    Pepe asked for a sample workbook, not a pic. No1 is inclined to re-type your data for you, and a pic is impossible to work with
    1. Use code tags for VBA. [code] Your Code [/code] (or use the # button)
    2. If your question is resolved, mark it SOLVED using the thread tools
    3. Click on the star if you think someone helped you

    Regards
    Ford

  5. #5
    Registered User
    Join Date
    03-11-2013
    Location
    Visakhapatnam , india
    MS-Off Ver
    Excel 2010
    Posts
    5

    Re: How to find missing numbers from a list in excel 2010?

    Book1.xlsx

    This is the sample book.
    I want to find the missing numbers from 11 to 64 in the list. Here FROM and TO in the sense, the numbers which are in between these cells are not required as missing but i need the numbers which are missing from the values mentioned in both columns. So how to find them using a formula or any other methods??

  6. #6
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: How to find missing numbers from a list in excel 2010?

    Did you attach the correct file?

    I looked at the attached file and I don't see where there are missing numbers.

    Let's try this...

    If you have these numbers in column A:

    1, 3, 5

    And you want to find which numbers are missing from the array 1, 2, 3, 4, 5. So, the missing numbers are 2 and 4.

    Is that what you want to do?
    Biff
    Microsoft MVP Excel
    Keep It Simple Stupid

    Let's Go Pens. We Want The Cup.

  7. #7
    Registered User
    Join Date
    03-11-2013
    Location
    Visakhapatnam , india
    MS-Off Ver
    Excel 2010
    Posts
    5

    Re: How to find missing numbers from a list in excel 2010?

    ok! can you plz tell me the formula to how o find missing numbers like that

    for example 2 and 4 in the list of 1 to 5

    can you tell me how to write the formula

  8. #8
    Forum Expert dredwolf's Avatar
    Join Date
    10-27-2012
    Location
    Clearwater,Canada
    MS-Off Ver
    Excel 2007
    Posts
    2,649

    Re: How to find missing numbers from a list in excel 2010?

    I will offer you this :http://www.cpearson.com/excel/ListFunctions.aspx
    It works if you have a list with the full range you are looking for, but the principle is the same --"find numbers not in one list that do exist in the other list"

    The reason (I think) Tony Valko (Biff) asked you the question, is because your column A in the sample IS contigous, no missing numbers! and there is no indication of what is expected or what is wrong, so nothing to base a formula on..

    Hope this helps
    A picture may be worth a thousand words, BUT, a sample Workbook is worth a thousand screenshots!
    -Add a File - click advanced (next to quick post), scroll to manage attachments, click, select add files, click select files, select file, click upload, when file shows up at bottom left, click done (bottom right), click submit
    -To mark thread Solved- go top of thread,click Thread Tools,click Mark as Solved
    If you received helpful response, please remember to hit the * of that post

  9. #9
    Forum Expert
    Join Date
    07-20-2011
    Location
    Mysore, India.
    MS-Off Ver
    Excel 2019
    Posts
    8,578

    Re: How to find missing numbers from a list in excel 2010?

    Pl see the attached file. It gives missing numbers between Two Numbers.
    Attached Files Attached Files

  10. #10
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: How to find missing numbers from a list in excel 2010?

    Let's assume you have this data:

    A2 = 1
    A3 = 3
    A4 = 5

    You want to know which numbers are not listed from the sequence 1, 2, 3, 4, 5.

    Enter this array formula** in C2:

    =IFERROR(SMALL(IF(ISNA(MATCH(ROW(INDIRECT("1:5")),A$2:A$4,0)),ROW(INDIRECT("1:5"))),ROWS(C$2:C2)),"")

    ** array formulas need to be entered using the key
    combination of CTRL,SHIFT,ENTER (not just ENTER).
    Hold down both the CTRL key and the SHIFT key
    then hit ENTER.

    Copy down until you get blanks.

    Note that this formula is slow to calculate on very large data sets.

  11. #11
    Registered User
    Join Date
    03-11-2013
    Location
    Visakhapatnam , india
    MS-Off Ver
    Excel 2010
    Posts
    5

    Re: How to find missing numbers from a list in excel 2010?

    Thanks! But i am only getting two , even though many times i am not getting 4

    i am able to find only one number and unable to find another numbers ''

    can you tell me how to solve this?

  12. #12
    Forum Expert Tony Valko's Avatar
    Join Date
    12-31-2011
    Location
    Pittsburgh
    MS-Off Ver
    2002, 2007:2013
    Posts
    18,890

    Re: How to find missing numbers from a list in excel 2010?

    Here's a small sample file that demonstrates this:

    MissingNums.xlsx

    The formula used in an array formula.

    Array formulas need to be entered using the key
    combination of CTRL,SHIFT,ENTER (not just ENTER).
    Hold down both the CTRL key and the SHIFT key
    then hit ENTER.

+ 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