+ Reply to Thread
Results 1 to 3 of 3

generating random number as template

  1. #1
    Jemm
    Guest

    generating random number as template

    I need to create a form in excel that generates a unique number for each
    form. If anyone can assist with the best way to do this it would be great.


  2. #2
    Chad
    Guest

    RE: generating random number as template

    Explain what you mean please.

    "Jemm" wrote:

    > I need to create a form in excel that generates a unique number for each
    > form. If anyone can assist with the best way to do this it would be great.
    >


  3. #3
    moi
    Guest

    Re: generating random number as template

    What you need is a Forms collection object, but in Excel that will only work
    for already loaded forms.
    So first create the collection yourself, and then browse through it.

    Sub CheckFormsInCollection()
    Dim i, u As Long, s As String
    Load Form1
    Load Form2
    Load Form3
    u = UserForms.Count - 1
    For i = u To 0 Step -1
    s = s & UserForms(i).Name & vbNewLine
    MsgBox s
    Next
    End Sub



    "Jemm" <Jemm@discussions.microsoft.com> schreef in bericht
    news:6DCF9F67-9946-44D3-BF4E-390A6A0219A3@microsoft.com...
    >I need to create a form in excel that generates a unique number for each
    > form. If anyone can assist with the best way to do this it would be great.
    >




+ 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