+ Reply to Thread
Results 1 to 6 of 6

Random password generator?

  1. #1
    KennyS
    Guest

    Random password generator?

    I know how to generate a random NUMBER. I need to generate a random
    PASSWORD. ie: 8characters, numerals & alpha. I'm guessing almost all of
    you know how to do it. I'd appreciate your help.

    Thanks.
    Kenny



  2. #2
    Guest

    Re: Random password generator?

    Hi Kenny

    I certainly don't know how to do it! I would suggest using something off the
    net designed to do it. Here's one I found on Yahoo:
    http://www.folder-password-expert.co...generator.html
    but I haven't tried it!! There are laods out there, though.

    Andy.

    "KennyS" <[email protected]> wrote in message
    news:[email protected]...
    >I know how to generate a random NUMBER. I need to generate a random
    >PASSWORD. ie: 8characters, numerals & alpha. I'm guessing almost all of
    >you know how to do it. I'd appreciate your help.
    >
    > Thanks.
    > Kenny
    >




  3. #3
    W. D. Allen Sr.
    Guest

    Re: Random password generator?

    Assuming you need eight character passwords using the twenty six lower case
    letters and ten numerals.
    1. In a column/row enter the numbers from 1 to 36.
    2. Write each letter or numeral in an adjacent column/row for a total of
    36 cells.
    3. Lay out eight cells to each contain a random number between 1 and 36
    generated using the function "=RANDBETWEEN()"
    4. adjacent to the above eight cells use "=LOOKUP()" to select the letter
    or numeral corresponding to each of the above eight random numbers.
    5. That combination of eight letters and numerals is the password,
    generated from a set of 2.8 trillion distinct passwords.

    WDA

    end

    "KennyS" <[email protected]> wrote in message
    news:[email protected]...
    >I know how to generate a random NUMBER. I need to generate a random
    >PASSWORD. ie: 8characters, numerals & alpha. I'm guessing almost all of
    >you know how to do it. I'd appreciate your help.
    >
    > Thanks.
    > Kenny
    >




  4. #4
    Bucky
    Guest

    Re: Random password generator?

    Note that you need to install the Analysis Tookpak to use RANDBETWEEN.
    You can always use "=INT(range * RAND()) - offset", where "range" and
    "offset" are variable.

    Another way is to use the CHAR() function.

    =CHAR(RANDBETWEEN(48,122))

    The problem is that you will get some of the non-alphanumerics between
    48 and 122. But just fill down for about 20 rows, and take the first 8
    characters that fit your criteria.


  5. #5
    Registered User
    Join Date
    09-23-2021
    Location
    UK
    MS-Off Ver
    365
    Posts
    1

    Re: Random password generator?

    I realize that this thread is ancient, however I was trying to do this myself and came up with a way to do this in a single cell after using info from several different questions.

    =TEXTJOIN("",TRUE,CHAR(RANDARRAY(A2,1,33,126,TRUE)))

    Put any number you want in A2 to set the password length

    Note that this produces a password that contains; lower case, upper case, numbers, and special characters. All characters that it can output can be found on a standard UK QWERTY keyboard.
    Last edited by jsummerbee; 09-23-2021 at 10:58 AM.

  6. #6
    Forum Moderator AliGW's Avatar
    Join Date
    08-10-2013
    Location
    Retired in Ipswich, Suffolk, but grew up in Sawley, Derbyshire (England)
    MS-Off Ver
    MS 365 Subscription Insider Beta Channel v. 2406 (Windows 11 23H2 64-bit)
    Posts
    81,693

    Re: Random password generator?

    Thanks for the additional solution.
    Ali


    Enthusiastic self-taught user of MS Excel who's always learning!
    Don't forget to say "thank you" in your thread to anyone who has offered you help.
    You can reward them by clicking on * Add Reputation below their user name on the left, if you wish.

    Forum Rules (updated August 2023): please read them here.

+ 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