+ Reply to Thread
Results 1 to 11 of 11

Generating unique id

  1. #1
    Registered User
    Join Date
    04-11-2016
    Location
    Ghana
    MS-Off Ver
    2007
    Posts
    32

    Generating unique id

    I have a userform with various textboxes for posting client data to worksheet 1. What i cant get correct is to let the userform generate a unique id in "textboxid" and post it to sheet 1 whenever the command button is pressed. After that i want the userform to automatically generate another unique id for the next customer. Please i need help

  2. #2
    Registered User
    Join Date
    11-01-2012
    Location
    Cairo, Egypt
    MS-Off Ver
    MS Office 2013
    Posts
    76

    Re: Generating unique id

    Please Login or Register  to view this content.

  3. #3
    Registered User
    Join Date
    04-11-2016
    Location
    Ghana
    MS-Off Ver
    2007
    Posts
    32

    Re: Generating unique id

    Thanks subverter am most grateful . Your codes work well. But it seems i did not explain myself well. I want a code that will generate alphanumeric numbers of about 7 digits that will be placed into column a cell 2 of sheet 1 when i press the command button. Sorry for not explaining myself well

  4. #4
    Registered User
    Join Date
    04-11-2016
    Location
    Ghana
    MS-Off Ver
    2007
    Posts
    32

    Re: Generating unique id

    I SAW THIS CODES AND COPIED IT. IT LSO WORKS WELL BUT THE PROBLEM IS IT DOES NOT MOVE TO THE NEXT CELL OF A3. IT ONLY STAYS AT A2 AND KEEPS ON CHANGING THE ID NUMBERS WHENEVER I POST DATA TO THE NEXT ROW OF B3. WILL BE GLAD IF YOU CAN HELP ME MODIFY IT AS WELL
    Dim id As String
    Dim i As Integer
    Randomize
    For i = 1 To 5
    If Int((2 * Rnd) + 1) = 1 Then
    id = id & Chr(Int(26 * Rnd + 65))
    Else
    id = id & Int(10 * Rnd)
    End If
    Next i
    ActiveSheet.Range("A2").Formula = id
    End With

  5. #5
    Valued Forum Contributor xlbiznes's Avatar
    Join Date
    02-22-2013
    Location
    Bahrain
    MS-Off Ver
    Excel 2007
    Posts
    1,223

    Re: Generating unique id

    Hi,

    you can change this line

    Please Login or Register  to view this content.
    To
    Please Login or Register  to view this content.
    Hope this helps.
    Happy Computing ,

    Xlbiznes.

    To show your appreciation please click *

  6. #6
    Forum Expert
    Join Date
    06-12-2012
    Location
    Ridgefield Park, New Jersey
    MS-Off Ver
    Excel 2003,2007,2010
    Posts
    10,241

    Re: Generating unique id

    Maybe:

    Please Login or Register  to view this content.

  7. #7
    Registered User
    Join Date
    04-11-2016
    Location
    Ghana
    MS-Off Ver
    2007
    Posts
    32

    Re: Generating unique id

    Thanks john. It worked like magic. God bless

  8. #8
    Forum Expert
    Join Date
    06-12-2012
    Location
    Ridgefield Park, New Jersey
    MS-Off Ver
    Excel 2003,2007,2010
    Posts
    10,241

    Re: Generating unique id

    You're welcome. Glad to help out and thanks for the feedback.

  9. #9
    Forum Guru Winon's Avatar
    Join Date
    02-20-2007
    Location
    East Rand, R.S.A.
    MS-Off Ver
    2010
    Posts
    6,113

    Re: Generating unique id

    @ KOBBY123,


    Your post does not comply with Rule 3 of our Forum RULES. Use code tags around code.

    Posting code between [CODE]Please [url=https://www.excelforum.com/login.php]Login or Register [/url] to view this content.[/CODE] tags makes your code much easier to read and copy for testing, it also maintains VBA formatting.

    Highlight your code and click the # icon at the top of your post window. More information about these and other tags can be found here

    (Please bear this in in mind with future Posts

    Also: If you are satisfied with the solution provided to you, then please remember to mark your thread as Solved. You may also click on the Star to the Bottom Left of the contributors' Post the add to his/her Reputation.

    @JOHN H. DAVIS,

    Good job!

    Regards.
    Please consider:

    Be polite. Thank those who have helped you. Then Click on the star icon in the lower left part of the contributor's post and add Reputation. Cleaning up when you're done. If you are satisfied with the help you have received, then Please do Mark your thread [SOLVED] .

  10. #10
    Forum Expert
    Join Date
    06-12-2012
    Location
    Ridgefield Park, New Jersey
    MS-Off Ver
    Excel 2003,2007,2010
    Posts
    10,241

    Re: Generating unique id

    @ Winon, Thanks for the comment.

  11. #11
    Forum Expert
    Join Date
    06-12-2012
    Location
    Ridgefield Park, New Jersey
    MS-Off Ver
    Excel 2003,2007,2010
    Posts
    10,241

    Re: Generating unique id

    @ Winon. Your PM is full.

+ 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. Generating a unique reference number
    By mrdigwiz in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 01-06-2016, 04:24 PM
  2. Generating Unique Groups of 4
    By Clarkit in forum Excel Formulas & Functions
    Replies: 5
    Last Post: 12-02-2015, 04:46 PM
  3. [SOLVED] Generating unique sequential numbers using VBA
    By onwell in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 02-01-2013, 11:15 AM
  4. Unique ID/Number generating
    By benzmar in forum Excel Formulas & Functions
    Replies: 6
    Last Post: 11-14-2012, 12:31 AM
  5. [SOLVED] Generating unique random number
    By Fuhgawz in forum Excel Programming / VBA / Macros
    Replies: 8
    Last Post: 10-09-2012, 05:26 PM
  6. Using Excel for Generating Unique Reports
    By victorc in forum Excel - New Users/Basics
    Replies: 2
    Last Post: 11-28-2009, 09:32 AM
  7. Generating unique pairs from a set of numbers
    By mistermat in forum Excel Formulas & Functions
    Replies: 1
    Last Post: 08-31-2008, 07:02 AM

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