+ Reply to Thread
Results 1 to 47 of 47

Eliminate consecutive numbers in a 5 number string

  1. #1
    Registered User
    Join Date
    08-19-2019
    Location
    South Africa
    MS-Off Ver
    2012
    Posts
    53

    Eliminate consecutive numbers in a 5 number string

    May I please be assisted with a code that eliminates consecutive numbers.

    I found this one on the internet but it does not do the job from mrexceldotcomforum (mrexcel.com/forum/excel-questions/712373-how-remove-consecutive-number-string-only-column.html)

    Please Login or Register  to view this content.

    I used it on my sheet, but it still gives me results such as 1,2,3,4,5.

    Can I have some help please, how can I manipulate it that it only gives me a unique set of 5 non-consecutive numbers only, such as 13579 instead of 12345?

    Thank you in advance
    Last edited by jeffreybrown; 08-19-2019 at 01:23 PM. Reason: Please use code tags!

  2. #2
    Forum Expert dangelor's Avatar
    Join Date
    09-06-2011
    Location
    Indiana, USA
    MS-Off Ver
    365 Pro Plus
    Posts
    2,274

    Re: Eliminate consecutive numbers in a 5 number string

    Try changing this...
    Please Login or Register  to view this content.
    to...
    Please Login or Register  to view this content.

  3. #3
    Registered User
    Join Date
    08-19-2019
    Location
    South Africa
    MS-Off Ver
    2012
    Posts
    53

    Re: Eliminate consecutive numbers in a 5 number string

    Thanks a lot for the suggestion. Unfortunately it yielded no results.

    Perhaps it would do me good to know what each line of the code means, from then I can try play with it, id appreciate knowing that from you.

    Thanks in advance.

  4. #4
    Forum Expert Kenneth Hobson's Avatar
    Join Date
    02-05-2007
    Location
    Tecumseh, OK
    MS-Off Ver
    Office 365, Win10Home
    Posts
    2,573

    Re: Eliminate consecutive numbers in a 5 number string

    Please show example cell data and expected results. The link's code input value are delimited by space characters. If your data is not that, then code will need to be changed.

    Or, did you want to generate a random 5 digit integer number with no two digits increasing by one? e.g. A1=13213, but not A1=12231.

    Or, if A1=12313 then return B1=True or if A1=12231 then B1=False.

  5. #5
    Registered User
    Join Date
    08-19-2019
    Location
    South Africa
    MS-Off Ver
    2012
    Posts
    53

    Re: Eliminate consecutive numbers in a 5 number string

    This is an example of desired results:

    LIST EXPECTED RESULT
    16 27 33 37 16 27 33 37
    18 19 20 21 01 19 20 32
    01 19 20 32 08 26 32 39
    08 26 32 39 13 14 24 25
    36 37 38 39 03 04 30 31
    13 14 24 25 05 20 30 32
    03 04 30 31 06 25 36 38
    01 02 03 04 12 13 28 31
    34 35 36 37 01 04 17 19
    05 20 30 32 09 31 36 38
    18 19 20 21 27 28 33 34
    06 25 36 38 08 09 19 33
    12 13 28 31 02 06 24 33
    01 04 17 19 13 30 33 35
    09 31 36 38 19 21 27 35

  6. #6
    Registered User
    Join Date
    08-19-2019
    Location
    South Africa
    MS-Off Ver
    2012
    Posts
    53

    Re: Eliminate consecutive numbers in a 5 number string

    Im sorry the example above is not formatted properly.

    The idea is that, if column A has a combination of consecutive numbers, then those are not printed out on column B.

    Therefore column B will only comprise of unique and non-consecutive 5 digit numbers.

    Column A: 12345 Column B: no print
    Column A: 13579 Column B: 13579

    something of this nature.

    Thank you

  7. #7
    Forum Expert dangelor's Avatar
    Join Date
    09-06-2011
    Location
    Indiana, USA
    MS-Off Ver
    365 Pro Plus
    Posts
    2,274

    Re: Eliminate consecutive numbers in a 5 number string

    Try changing the <> in this line to =
    Please Login or Register  to view this content.

  8. #8
    Forum Expert dangelor's Avatar
    Join Date
    09-06-2011
    Location
    Indiana, USA
    MS-Off Ver
    365 Pro Plus
    Posts
    2,274

    Re: Eliminate consecutive numbers in a 5 number string

    Perhaps it would do me good to know what each line of the code means, from then I can try play with it, id appreciate knowing that from you.
    Look at your Mr. Excel post

  9. #9
    Registered User
    Join Date
    08-19-2019
    Location
    South Africa
    MS-Off Ver
    2012
    Posts
    53

    Re: Eliminate consecutive numbers in a 5 number string

    Thanks for all the information, unfortunately it gives same results.

    It seems I am not preview to add Excel attachments as yet, can I have your Email via the direct message so I can send it over for you?

    Thank you.

  10. #10
    Forum Guru
    Join Date
    08-15-2004
    Location
    Tokyo, Japan
    MS-Off Ver
    2013 O.365
    Posts
    22,525

    Re: Eliminate consecutive numbers in a 5 number string

    Please Login or Register  to view this content.

  11. #11
    Registered User
    Join Date
    08-19-2019
    Location
    South Africa
    MS-Off Ver
    2012
    Posts
    53

    Re: Eliminate consecutive numbers in a 5 number string

    Thank you very much jindon,

    What this code did, is to copy column A and paste in on column B.

    Sadly no change as yet.

  12. #12
    Forum Guru
    Join Date
    08-15-2004
    Location
    Tokyo, Japan
    MS-Off Ver
    2013 O.365
    Posts
    22,525

    Re: Eliminate consecutive numbers in a 5 number string

    Upload your workbook.

  13. #13
    Forum Guru
    Join Date
    08-15-2004
    Location
    Tokyo, Japan
    MS-Off Ver
    2013 O.365
    Posts
    22,525

    Re: Eliminate consecutive numbers in a 5 number string

    Quote Originally Posted by Lukhanyo View Post
    I have some help please, how can I manipulate it that it only gives me a unique set of 5 non-consecutive numbers only, such as 13579 instead of 12345?
    If data in colA is just a 5 digits number
    Please Login or Register  to view this content.

  14. #14
    Forum Guru bakerman2's Avatar
    Join Date
    10-03-2012
    Location
    Antwerp, Belgium
    MS-Off Ver
    MO Prof Plus 2016
    Posts
    6,908

    Re: Eliminate consecutive numbers in a 5 number string

    Please Login or Register  to view this content.
    Avoid using Select, Selection and Activate in your code. Use With ... End With instead.
    You can show your appreciation for those that have helped you by clicking the * at the bottom left of any of their posts.

  15. #15
    Registered User
    Join Date
    08-19-2019
    Location
    South Africa
    MS-Off Ver
    2012
    Posts
    53

    Re: Eliminate consecutive numbers in a 5 number string

    thank you very much for your replies!

    At: bakerman2 I get an error

    At: jiodon the code simply copies column A to Column B. Yes I would really love to upload my workbook but at this time the forum does not allow me to make such abs upload. Hence I thought of the direct messaging option.

    thanks in advance for considering!

    kind regards.

  16. #16
    Forum Guru
    Join Date
    08-15-2004
    Location
    Tokyo, Japan
    MS-Off Ver
    2013 O.365
    Posts
    22,525

    Re: Eliminate consecutive numbers in a 5 number string

    Please attach a sample workbook (not a picture or pasted copy). Make sure there is just enough data to demonstrate your need. Include a BEFORE sheet and an AFTER sheet in the workbook if needed to show the process you're trying to complete or automate. Make sure your desired results are shown, mock them up manually if necessary.

    Remember to desensitize the data.

    Click on GO ADVANCED and then scroll down to Manage Attachments to open the upload window.

  17. #17
    Registered User
    Join Date
    08-19-2019
    Location
    South Africa
    MS-Off Ver
    2012
    Posts
    53

    Re: Eliminate consecutive numbers in a 5 number string

    hello friends.

    please find workbook attached for your consideration.

    thank you.
    Attached Files Attached Files

  18. #18
    Registered User
    Join Date
    08-19-2019
    Location
    South Africa
    MS-Off Ver
    2012
    Posts
    53

    Re: Eliminate consecutive numbers in a 5 number string

    I have attached the full file in this second attachment post, thanks for the tips on how to attach a workbook.

    Kind regards.
    Attached Files Attached Files

  19. #19
    Forum Guru
    Join Date
    08-15-2004
    Location
    Tokyo, Japan
    MS-Off Ver
    2013 O.365
    Posts
    22,525

    Re: Eliminate consecutive numbers in a 5 number string

    You don't have consecutive numbers like 1 2 3 4 5, so my first code outputs all the data in col.B.

    What is your desired result?

  20. #20
    Forum Guru
    Join Date
    08-15-2004
    Location
    Tokyo, Japan
    MS-Off Ver
    2013 O.365
    Posts
    22,525

    Re: Eliminate consecutive numbers in a 5 number string

    You have only one consecutive numbers in A1 in 2nd workbook...
    Outputs none consecutive numbers in col.B and consecutive numbers in col.C.
    Please Login or Register  to view this content.
    Attached Files Attached Files
    Last edited by jindon; 08-20-2019 at 04:35 PM.

  21. #21
    Forum Guru bakerman2's Avatar
    Join Date
    10-03-2012
    Location
    Antwerp, Belgium
    MS-Off Ver
    MO Prof Plus 2016
    Posts
    6,908

    Re: Eliminate consecutive numbers in a 5 number string

    The idea is that, if column A has a combination of consecutive numbers, then those are not printed out on column B.

    Therefore column B will only comprise of unique and non-consecutive 5 digit numbers.
    Please Login or Register  to view this content.

  22. #22
    Forum Guru
    Join Date
    08-15-2004
    Location
    Tokyo, Japan
    MS-Off Ver
    2013 O.365
    Posts
    22,525

    Re: Eliminate consecutive numbers in a 5 number string


    People from that country doesn't seem to know internet manner to pay respect to the author...

  23. #23
    Forum Guru bakerman2's Avatar
    Join Date
    10-03-2012
    Location
    Antwerp, Belgium
    MS-Off Ver
    MO Prof Plus 2016
    Posts
    6,908

    Re: Eliminate consecutive numbers in a 5 number string

    @ jindon

    I'm not going to take this into the public forum but don't try this again or I will not hesitate to do so next time you pull another stunt like this.

    I have the atmost respect for your skills but don't blame me if you fail to comply to the OP's wishes time and time again (read the qoute in my post)

  24. #24
    Forum Guru
    Join Date
    08-15-2004
    Location
    Tokyo, Japan
    MS-Off Ver
    2013 O.365
    Posts
    22,525

    Re: Eliminate consecutive numbers in a 5 number string

    Seems no change...

  25. #25
    Forum Guru bakerman2's Avatar
    Join Date
    10-03-2012
    Location
    Antwerp, Belgium
    MS-Off Ver
    MO Prof Plus 2016
    Posts
    6,908

    Re: Eliminate consecutive numbers in a 5 number string

    @ jindon

    The way I read OP's request is that when anywhere in the string there's a pair of consecutive numbers the string isn't valid.

    I haven't checked them all but using YOUR altered code in the file of Post#20 the first valid number would be on row 6512.

  26. #26
    Forum Expert Kenneth Hobson's Avatar
    Join Date
    02-05-2007
    Location
    Tecumseh, OK
    MS-Off Ver
    Office 365, Win10Home
    Posts
    2,573

    Re: Eliminate consecutive numbers in a 5 number string

    I think post #4 might have explained the need best. The way I read it:

    1. The next number can not be one more than the previous.
    2. No duplicate numbers.

    There might be a 3rd step where duplicates are removed after (2) and recheck the results.

    The examples files are ok for input but do not show output results. It is my recommendation to manually markup the column B results for a few rows and attach that file. The forum can skew things due to alignment via html.

    Here are some of my interpretations:

    Input: 1 2 4 22 23
    Output: 4

    Input: 22 24 26 22 3
    Output: 22 24 26 3

    Input: 1 3 5 1 3
    Output: 1 3 5

    Or, is it that all of the output in cases above would be nothing?
    Last edited by Kenneth Hobson; 08-20-2019 at 06:36 PM.

  27. #27
    Registered User
    Join Date
    08-19-2019
    Location
    South Africa
    MS-Off Ver
    2012
    Posts
    53

    Re: Eliminate consecutive numbers in a 5 number string

    At Kenneth Hobson, yes yes yes thats exactly what im looking for.

    Thank you for bearing with my weaknesses all of you dear kind friends.

  28. #28
    Registered User
    Join Date
    08-19-2019
    Location
    South Africa
    MS-Off Ver
    2012
    Posts
    53

    Re: Eliminate consecutive numbers in a 5 number string

    Hello my Guru friend jindon,

    from my side this one doesn't give the desired result.

    The desired result is as follows:


    Input: 1 2 4 22 23
    Output: 4

    Input: 22 24 26 22 3
    Output: 22 24 26 3

    Input: 1 3 5 1 3
    Output: 1 3 5

    1. The next number can not be one more than the previous.
    2. No duplicate numbers.

    Thank you very much for the help in advance.

  29. #29
    Registered User
    Join Date
    08-19-2019
    Location
    South Africa
    MS-Off Ver
    2012
    Posts
    53

    Re: Eliminate consecutive numbers in a 5 number string

    Very sorry Bakerman2, this one produced no results.

    Thank you very much for trying.

  30. #30
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Cool Hi ! Try this ‼

    Quote Originally Posted by Lukhanyo View Post
    2. No duplicate numbers.
    According to your post #18 attachment that's irrelevant as it has no duplicate !
    If you change rules or data, just update accordingly the formulas within the next demonstration …

    An Excel beginner can achieve this without any code just with formulas in helper columns
    so according to your post #18 full file I apply some formulas in this starter demonstration :

    PHP Code: 
    Sub Demo1()
             
    Application.ScreenUpdating False
        With 
    [A1].CurrentRegion.Columns(1)
            .
    Item("B:M").Clear
            
    .TextToColumns [D1], xlDelimitedSpace:=True
            
    .Item("I:M").Formula = Array("=IF(E1-D1>1,D1,"""")""=IF(AND(ISNUMBER(I1),F1-E1>1),E1,"""")"_
                  
    "=IF(AND(F1-E1>1,G1-F1>1),F1,"""")""=IF(AND(G1-F1>1,ISNUMBER(M1)),G1,"""")""=IF(H1-G1>1,H1,"""")")
            .
    Item(2).Formula "=TRIM(I1&"" ""&J1&"" ""&K1&"" ""&L1&"" ""&M1)"
            
    .Item(2).NumberFormat "@"
            
    .Item(2).Formula = .Item(2).Value2
            
    .Item("D:M").Clear
        End With
             Application
    .ScreenUpdating True
    End Sub 
    Do you like it ? So thanks to click on bottom left star icon « Add Reputation » !

  31. #31
    Forum Guru
    Join Date
    08-15-2004
    Location
    Tokyo, Japan
    MS-Off Ver
    2013 O.365
    Posts
    22,525

    Re: Eliminate consecutive numbers in a 5 number string

    Is this what you want?
    I originally worked with the logic in the link that you have provided, so this is not related that one.
    Please Login or Register  to view this content.

  32. #32
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Lightbulb

    No need any Dictionary :

    PHP Code: 
    Sub Demo2()
            
    Dim VR&, S
        With 
    [A1].CurrentRegion.Columns
                V 
    = .Item(1).Value2
            
    For 1 To UBound(V)
                
    Split(V(R1))
                If 
    S(1) - S(0) > 1 Then V(R1) = " " S(0) Else V(R1) = ""
                
    If S(1) - S(0) > And S(2) - S(1) > 1 Then V(R1) = V(R1) & " " S(1)
                If 
    S(2) - S(1) > And S(3) - S(2) > 1 Then V(R1) = V(R1) & " " S(2)
                If 
    S(3) - S(2) > And S(4) - S(3) > 1 Then V(R1) = V(R1) & " " S(3)
                If 
    S(4) - S(3) > 1 Then V(R1) = V(R1) & " " S(4)
            
    Next
               
    .Item(2).Value2 V
        End With
    End Sub 
    ► Do you like it ? ► ► So thanks to click on bottom left star icon « Add Reputation » !

  33. #33
    Registered User
    Join Date
    08-19-2019
    Location
    South Africa
    MS-Off Ver
    2012
    Posts
    53

    Re: Eliminate consecutive numbers in a 5 number string

    IT WORKED thank you thank you and thank you!

    now I need a code that will do the following.

    If Block B has 5 digits print them over to Block C.

    If Block B has less than 5 digits, do not do any action.

    Thank you.

  34. #34
    Forum Guru
    Join Date
    08-15-2004
    Location
    Tokyo, Japan
    MS-Off Ver
    2013 O.365
    Posts
    22,525

    Re: Eliminate consecutive numbers in a 5 number string

    Quote Originally Posted by Lukhanyo View Post
    IT WORKED
    Which code are you talking about?

    The results are different.

  35. #35
    Registered User
    Join Date
    08-19-2019
    Location
    South Africa
    MS-Off Ver
    2012
    Posts
    53

    Re: Eliminate consecutive numbers in a 5 number string

    so now the code you helped me with printed the desired results, thank you for that!

    No I am speaking of a second one, since the results are printed in Column B, theres a lot to sort, I am only interested in the 5 digit results.

    Is it possible to write a piece of code that will take all 5 digit numbers from Column B and copy them over to Column C, I have attached the workbook.

    Thanks in advance for the work.

    This is the code that worked:

    Sub Demo1()
    Application.ScreenUpdating = False
    With [A1].CurrentRegion.Columns(1)
    .Item("B:M").Clear
    .TextToColumns [D1], xlDelimited, Space:=True
    .Item("I:M").Formula = Array("=IF(E1-D1>1,D1,"""")", "=IF(AND(ISNUMBER(I1),F1-E1>1),E1,"""")", _
    "=IF(AND(F1-E1>1,G1-F1>1),F1,"""")", "=IF(AND(G1-F1>1,ISNUMBER(M1)),G1,"""")", "=IF(H1-G1>1,H1,"""")")
    .Item(2).Formula = "=TRIM(I1&"" ""&J1&"" ""&K1&"" ""&L1&"" ""&M1)"
    .Item(2).NumberFormat = "@"
    .Item(2).Formula = .Item(2).Value2
    .Item("D:M").Clear
    End With
    Application.ScreenUpdating = True
    End Sub

  36. #36
    Registered User
    Join Date
    08-19-2019
    Location
    South Africa
    MS-Off Ver
    2012
    Posts
    53

    Re: Eliminate consecutive numbers in a 5 number string

    attached is a picture of Column A, and the results of the formula in Column B.

    Now I want all the digits that are less than 5, to remain in Column B. and all the digits that are 5 in number to print in Column C.

    Example:

    Column A: 1234 Column B: 1234 Column C: (empty)

    Column A: 12345 Column B: 12345 Column C: 12345.

    Thank you
    Attached Images Attached Images

  37. #37
    Forum Guru
    Join Date
    08-15-2004
    Location
    Tokyo, Japan
    MS-Off Ver
    2013 O.365
    Posts
    22,525

    Re: Eliminate consecutive numbers in a 5 number string

    If result in col.B has 5 numbers, copy to col.C?
    Please Login or Register  to view this content.

  38. #38
    Registered User
    Join Date
    08-19-2019
    Location
    South Africa
    MS-Off Ver
    2012
    Posts
    53

    Re: Eliminate consecutive numbers in a 5 number string

    Hello Friend,

    It gives this error: Run-time error '429': ActiveX component can't create object.

    thanks in advance for assistance.

  39. #39
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Question

    Quote Originally Posted by Lukhanyo View Post
    Is it possible to write a piece of code that will take all 5 digit numbers from Column B and copy them over to Column C, I have attached the workbook.
    You must explain all your need when you create the thread
    as it can be a waste of time for any helper to rewrite a code for any new change !
    As per forum rules a new question, a new thread …

    So I hope at least it's now your complete need (?) or explain at least all you need.

  40. #40
    Forum Guru
    Join Date
    08-15-2004
    Location
    Tokyo, Japan
    MS-Off Ver
    2013 O.365
    Posts
    22,525

    Re: Eliminate consecutive numbers in a 5 number string

    xl2012....

    Try this one
    Please Login or Register  to view this content.

  41. #41
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Cool

    Thanks for the rep' added !

    So with column C (Edit v2) :

    PHP Code: 
    Sub Demo3()
          Const 
    "¤"
            
    Dim BCR&, S$(), T$()
        
    With [A1].CurrentRegion.Columns
                B 
    = .Item(1).Value2:  B
            
    For 1 To UBound(B)
                    
    Split(B(R1))
                If 
    UBound(S) = 4 Then
                    T 
    S
                    
    If T(1) - T(0) < 2 Then S(0) = F
                    
    If S(0) = Or T(2) - T(1) < 2 Then S(1) = F
                    
    If T(2) - T(1) < Or T(3) - T(2) < 2 Then S(2) = F
                    
    If T(4) - T(3) < 2 Then S(4) = F
                    
    If T(3) - T(2) < Or S(4) = F Then S(3) = F
                    S 
    Filter(SFFalse)
                    
    B(R1) = Join(S)
                    
    C(R1) = IIf(UBound(S) = 4B(R1), Empty)
                Else
                    
    B(R1) = F:  C(R1) = F
                End 
    If
            
    Next
               
    .Item("B:C").NumberFormat "@"
               
    .Item(2).Value2 B
               
    .Item(3).Value2 C
        End With
    End Sub 
    ► Do you like it ? ► ► So thanks to click on bottom left star icon « Add Reputation » !
    Last edited by Marc L; 08-22-2019 at 08:49 AM. Reason: oops ! Optimization …

  42. #42
    Registered User
    Join Date
    08-19-2019
    Location
    South Africa
    MS-Off Ver
    2012
    Posts
    53

    Re: Eliminate consecutive numbers in a 5 number string

    Thanks Marc L,

    This one is throwing an error. . . Run-time error '9' Subscript out of range.

    thank you

  43. #43
    Registered User
    Join Date
    08-19-2019
    Location
    South Africa
    MS-Off Ver
    2012
    Posts
    53

    Re: Eliminate consecutive numbers in a 5 number string

    THANK YOU THANK YOU THANK YOU THANK YOU,

    you are an EXCEL GURU.

  44. #44
    Forum Guru
    Join Date
    08-15-2004
    Location
    Tokyo, Japan
    MS-Off Ver
    2013 O.365
    Posts
    22,525

    Re: Eliminate consecutive numbers in a 5 number string

    You are welcome and thanks for the multiple reps.

    If that takes care of your original question, please select Thread Tools from the menu link above and mark this thread as SOLVED.

  45. #45
    Registered User
    Join Date
    08-19-2019
    Location
    South Africa
    MS-Off Ver
    2012
    Posts
    53

    Re: Eliminate consecutive numbers in a 5 number string

    thanks jindon, I noticed in my original post that there was some details missing in the output, this threat has been going on for a while I will close it as requested and start a new one.

  46. #46
    Forum Expert
    Join Date
    11-24-2013
    Location
    Paris, France
    MS-Off Ver
    Excel 2003 / 2010
    Posts
    9,831

    Arrow

    Quote Originally Posted by Lukhanyo View Post
    Thanks Marc L,

    This one is throwing an error. . . Run-time error '9' Subscript out of range.
    No error on my side with your attachment so did you try with my post #41 code second version ?

  47. #47
    Forum Expert Kenneth Hobson's Avatar
    Join Date
    02-05-2007
    Location
    Tecumseh, OK
    MS-Off Ver
    Office 365, Win10Home
    Posts
    2,573

    Re: Eliminate consecutive numbers in a 5 number string

    Cross-posted with formula solutions using input of "12345": https://www.mrexcel.com/forum/excel-...l-numbers.html

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 3
    Last Post: 04-22-2016, 02:25 AM
  2. [SOLVED] How to merge a numbers from 3 cells, eliminate repetitive numbers, and sort such numbers?
    By david gonzalez in forum Excel Programming / VBA / Macros
    Replies: 9
    Last Post: 10-22-2012, 11:59 AM
  3. Replies: 6
    Last Post: 03-23-2012, 06:03 PM
  4. Sum Non-consecutive String of Numbers
    By dschwister in forum Excel General
    Replies: 1
    Last Post: 10-13-2011, 06:33 PM
  5. Replies: 5
    Last Post: 09-01-2011, 03:46 AM
  6. match number in a string of numbers
    By cmoore in forum Excel General
    Replies: 3
    Last Post: 05-02-2006, 02:50 PM
  7. [SOLVED] can I delete the 1st number from a string of numbers
    By Jessica in forum Excel General
    Replies: 3
    Last Post: 02-08-2006, 11:35 PM

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