+ Reply to Thread
Results 1 to 3 of 3

sequence numbering

Hybrid View

  1. #1
    Registered User
    Join Date
    05-28-2016
    Location
    India
    MS-Off Ver
    7
    Posts
    1

    sequence numbering

    Hello forum guys.
    I am stuck up at one place regarding sequence numbering. I have attached a sheet for making it more clear.
    The required output is shown in sheet2 , but it is actually required in the same sheet named Main when you run the code.
    Wanted just an option . In case if the code is run and the output is required in the sheet name Option and not Main.

    Thanks and have a nice day.

    jparmar
    Attached Files Attached Files

  2. #2
    Forum Expert MickG's Avatar
    Join Date
    11-23-2007
    Location
    Banbury,Oxfordshire
    Posts
    2,650

    Re: sequence numbering

    Try this for Results in column "D" sheet "Main".
    Sub MG28May03
    Dim Rng As Range, Dn As Range, Ac As Integer, num As String, Str As String
    Dim c As Long, n As Long, Ray(), col As Integer, Lc As Integer
    Set Rng = Range(Range("A1"), Range("A" & Rows.Count).End(xlUp))
    c = 0
    For Each Dn In Rng
        num = "": Str = ""
            For Ac = 1 To Len(Dn.Value)
                If Mid(Dn.Value, Ac, 1) Like "[0-9]" Then
                    num = num + Mid(Dn.Value, Ac, 1)
                Else
                    Str = Str & Mid(Dn.Value, Ac, 1)
                End If
            Next Ac
            col = IIf(Dn.Offset(, 1) = "", 0, Dn.Offset(, 1).Value)
            Lc = Lc + col + 1
            ReDim Preserve Ray(0 To Lc)
                For n = 0 To col
                    Ray(c) = Str & num + n
                    c = c + 1
                Next n
    Next Dn
    Range("D1").Resize(c) = Application.Transpose(Ray)
    End Sub
    Regards Mick

  3. #3
    Forum Guru sktneer's Avatar
    Join Date
    04-30-2011
    Location
    Kanpur, India
    MS-Off Ver
    Office 365
    Posts
    9,655

    Re: sequence numbering

    Hi,

    Welcome to the forum.

    Please try this...
    Sub SequenceNumber()
    Dim ws As Worksheet
    Dim sqNum(), data
    Dim i As Long, j As Long, ii As Long
    Dim Ans As String
    
    Set ws = Sheets("Main")
    data = ws.Range("A1").CurrentRegion.Value
    
    ii = 1
    For i = 1 To UBound(data, 1)
       For j = 0 To data(i, 2)
          ReDim Preserve sqNum(1 To ii)
          sqNum(ii) = Replace(CStr(data(i, 1)), ExtractNumber(CStr(data(i, 1))), "") & ExtractNumber(CStr(data(i, 1))) + j
          ii = ii + 1
       Next j
    Next i
    Ans = MsgBox("Do you want the output on the Option Sheet?", vbQuestion + vbYesNo)
    If Ans = vbYes Then
       On Error Resume Next
       Set ws = Sheets("Option")
       If ws Is Nothing Then
          MsgBox "Option Sheet is not available in the workbook.", vbCritical, "Sheet Not Available!"
          Exit Sub
       End If
    End If
    ws.Columns("A").Clear
    ws.Range("A1").Resize(UBound(sqNum)).Value = Application.Transpose(sqNum)
    ws.Activate
    End Sub
    
    Function ExtractNumber(Str As String) As String
    Dim RegEx As Object
    Dim Match As Object
    
    Set RegEx = CreateObject("vbscript.regexp")
    RegEx.Pattern = "\d{1,}"
       
    If RegEx.test(Str) = True Then
       Set Match = RegEx.Execute(Str)
       ExtractNumber = Match(0)
    End If
    End Function
    In the attached, click the button on the Main Sheet to run the code.
    Attached Files Attached Files
    Regards
    sktneer


    Treat people the way you want to be treated. Talk to people the way you want to be talked to.
    Respect is earned NOT given.

+ 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. [SOLVED] Sequence in numbering..
    By Exequiel3k in forum Excel Formulas & Functions
    Replies: 9
    Last Post: 05-26-2016, 10:58 AM
  2. [SOLVED] Sequence numbering with 3 result combinations
    By Jhon Mustofa in forum Excel Formulas & Functions
    Replies: 16
    Last Post: 04-10-2014, 06:46 AM
  3. [SOLVED] Numbering Sequence based on two criteria.
    By SamCV in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 12-13-2013, 02:16 AM
  4. Sequence numbering for each duplicate record
    By excel.help in forum Excel Formulas & Functions
    Replies: 2
    Last Post: 12-01-2011, 05:48 PM
  5. Numbering a sequence
    By nods in forum Excel General
    Replies: 4
    Last Post: 10-06-2010, 11:00 AM
  6. Automatic Sequence Numbering with Autofilter
    By igi0814 in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 07-18-2009, 03:37 AM
  7. Numbering Sequence
    By scw1217 in forum Excel General
    Replies: 1
    Last Post: 02-23-2009, 05:51 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