+ Reply to Thread
Results 1 to 15 of 15

Math help

Hybrid View

mathman04232423 Math help 07-16-2008, 10:37 AM
sweep Hi, Confirm the numerals... 07-16-2008, 10:57 AM
shg Maybe =IF(AND(LEN(A1)=8,... 07-16-2008, 11:22 AM
olasa ... 07-16-2008, 11:31 AM
mathman04232423 Hey thanks for the answers... 07-16-2008, 12:24 PM
mathman04232423 Ah... You don't understand,... 07-16-2008, 12:26 PM
  1. #1
    Registered User
    Join Date
    07-16-2008
    Location
    USA
    Posts
    7

    Math help

    Help. I need a way to display all 8 digit numbers that have the digits 1-8 in them. (ie. 12345678 but NOT 12345679 OR 12345677) Also If I could somehow divide by 13 then check for whole numbers that would be great... thx

  2. #2
    Forum Expert sweep's Avatar
    Join Date
    04-03-2007
    Location
    Great Sankey, Warrington, UK
    MS-Off Ver
    2003 / 2007 / 2010 / 2016 / 365
    Posts
    3,454
    Hi,

    Confirm the numerals from 1 through 8 using

    =AND(FIND("1",A1),FIND("2",A1),FIND("3",A1),FIND("4",A1),FIND("5",A1),FIND("6",A1),FIND("7",A1),FIND("8",A1))

    confirm that when divided by 13 a whole number is present with

    =A1/13=INT(A1/13)
    Rule 1: Never merge cells
    Rule 2: See rule 1

    "Tomorrow I'm going to be famous. All I need is a tennis racket and a hat".

  3. #3
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    Maybe
    =IF(AND(LEN(A1)=8, ISERROR(FIND("9", A1)), MOD(A1, 13) = 0), A1, "")

    64451166, for example, passes.

    Mathman, please read our Forum Rules about thread titles before starting your next thread.
    Last edited by shg; 07-16-2008 at 11:29 AM.

  4. #4
    Forum Expert
    Join Date
    12-24-2004
    Location
    Sweden
    Posts
    1,256

    ...

    And Only 8 digit numbers?
    =AND(ISNUMBER(FIND(ROW($A$1:$A$8);A1));LEN(A1)=8)
    //Ola

    Note: Array Entered (read the blue text)

  5. #5
    Registered User
    Join Date
    07-16-2008
    Location
    USA
    Posts
    7
    Hey thanks for the answers but I can't seem to get it to work. I don't want to make it seem like I'm not doing any work but could someone get me a list of numbers? Or even better the some of numbers?

  6. #6
    Registered User
    Join Date
    07-16-2008
    Location
    USA
    Posts
    7
    Ah... You don't understand, the digits can not repeat. Sorry about that

  7. #7
    Forum Expert shg's Avatar
    Join Date
    06-20-2007
    Location
    The Great State of Texas
    MS-Off Ver
    2010, 2019
    Posts
    40,689
    =AND(ISNUMBER(FIND({"1","2","3","4","5","6","7","8"}, A1) ) )

    Mathman, please acknowledge my request in post #3.

+ 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