Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
bj
 
Posts: n/a
Default Random alpha generator

to have 1200 unique 2 letter combinations you need about 35 unique characters.
this normally would not be done with alphnumeric because of the similarities
between 0 Zero and the letter O and 1 (one) and the letter I Combining lower
case and upper case letters is a possibility.

From your title is sounds as though you want to gererate them randomly
rather than just assigning them.
What I would to to generate them and get them into a random order is to
first enter in a column (A?) a,b,c,...X,Y,Z (one letter per cell). I would
fill this column with copies down to 2704. I would then copy this column to
the next column (B?)
and in a third Column (c?) enter in C1 =A1 & B1, and copy this cell down to
C2704
In a fourth coulmn (D?) I would enter =Rand() in D1 and copy this down to
D2704
then selecting Columns ABCD and sorting by Column D You would have in column
C a list of 2704 unique 2 letter identifiers. Note I would select all and
paste values over the top of the calculations.

If you can't use the lower and upper case characters, you will need to
establish what your needed unique characters are and just adjust the limits
of he cells by whatever number of characters you end up with



"DBuche" wrote:

I need a way to generate over 1200 unique two letter combinations. I've been
reading past posts that explain ways to use the MATCH and VLOOKUP functions
to convert numbers to text, but have not found the solution yet. Any help
would be greatly appreciated.

  #2   Report Post  
DBuche
 
Posts: n/a
Default

Thanks for the fast response bj. I tried your method and though it taught me
a lot it didn't solve my problem. Perhaps I didn't state it clearly. I need
1200 random two letter combinations, no numerics. Your method produced a
random but repetitive list of the same two characters; AA, BB, CC. etc. Many
instances of AA, BB, etc, were generated using your method.

"bj" wrote:

to have 1200 unique 2 letter combinations you need about 35 unique characters.
this normally would not be done with alphnumeric because of the similarities
between 0 Zero and the letter O and 1 (one) and the letter I Combining lower
case and upper case letters is a possibility.

From your title is sounds as though you want to gererate them randomly
rather than just assigning them.
What I would to to generate them and get them into a random order is to
first enter in a column (A?) a,b,c,...X,Y,Z (one letter per cell). I would
fill this column with copies down to 2704. I would then copy this column to
the next column (B?)
and in a third Column (c?) enter in C1 =A1 & B1, and copy this cell down to
C2704
In a fourth coulmn (D?) I would enter =Rand() in D1 and copy this down to
D2704
then selecting Columns ABCD and sorting by Column D You would have in column
C a list of 2704 unique 2 letter identifiers. Note I would select all and
paste values over the top of the calculations.

If you can't use the lower and upper case characters, you will need to
establish what your needed unique characters are and just adjust the limits
of he cells by whatever number of characters you end up with



"DBuche" wrote:

I need a way to generate over 1200 unique two letter combinations. I've been
reading past posts that explain ways to use the MATCH and VLOOKUP functions
to convert numbers to text, but have not found the solution yet. Any help
would be greatly appreciated.

  #3   Report Post  
bj
 
Posts: n/a
Default

Mea culpa
I forgot to write down one very important step
after copying column A to Column B, SORT COLUMN B Now after the steps in
column C you will have unique identifiers.

"DBuche" wrote:

Thanks for the fast response bj. I tried your method and though it taught me
a lot it didn't solve my problem. Perhaps I didn't state it clearly. I need
1200 random two letter combinations, no numerics. Your method produced a
random but repetitive list of the same two characters; AA, BB, CC. etc. Many
instances of AA, BB, etc, were generated using your method.

"bj" wrote:

to have 1200 unique 2 letter combinations you need about 35 unique characters.
this normally would not be done with alphnumeric because of the similarities
between 0 Zero and the letter O and 1 (one) and the letter I Combining lower
case and upper case letters is a possibility.

From your title is sounds as though you want to gererate them randomly
rather than just assigning them.
What I would to to generate them and get them into a random order is to
first enter in a column (A?) a,b,c,...X,Y,Z (one letter per cell). I would
fill this column with copies down to 2704. I would then copy this column to
the next column (B?)
and in a third Column (c?) enter in C1 =A1 & B1, and copy this cell down to
C2704
In a fourth coulmn (D?) I would enter =Rand() in D1 and copy this down to
D2704
then selecting Columns ABCD and sorting by Column D You would have in column
C a list of 2704 unique 2 letter identifiers. Note I would select all and
paste values over the top of the calculations.

If you can't use the lower and upper case characters, you will need to
establish what your needed unique characters are and just adjust the limits
of he cells by whatever number of characters you end up with



"DBuche" wrote:

I need a way to generate over 1200 unique two letter combinations. I've been
reading past posts that explain ways to use the MATCH and VLOOKUP functions
to convert numbers to text, but have not found the solution yet. Any help
would be greatly appreciated.

  #4   Report Post  
bj
 
Posts: n/a
Default

If you get two response I apologize. I thought I had answered this before.

I made one big mistake in my suggestion You need to sort column B before
going onto the steps in column C. With this added step you wont get the
multiple copies of the same combo.

"DBuche" wrote:

Thanks for the fast response bj. I tried your method and though it taught me
a lot it didn't solve my problem. Perhaps I didn't state it clearly. I need
1200 random two letter combinations, no numerics. Your method produced a
random but repetitive list of the same two characters; AA, BB, CC. etc. Many
instances of AA, BB, etc, were generated using your method.

"bj" wrote:

to have 1200 unique 2 letter combinations you need about 35 unique characters.
this normally would not be done with alphnumeric because of the similarities
between 0 Zero and the letter O and 1 (one) and the letter I Combining lower
case and upper case letters is a possibility.

From your title is sounds as though you want to gererate them randomly
rather than just assigning them.
What I would to to generate them and get them into a random order is to
first enter in a column (A?) a,b,c,...X,Y,Z (one letter per cell). I would
fill this column with copies down to 2704. I would then copy this column to
the next column (B?)
and in a third Column (c?) enter in C1 =A1 & B1, and copy this cell down to
C2704
In a fourth coulmn (D?) I would enter =Rand() in D1 and copy this down to
D2704
then selecting Columns ABCD and sorting by Column D You would have in column
C a list of 2704 unique 2 letter identifiers. Note I would select all and
paste values over the top of the calculations.

If you can't use the lower and upper case characters, you will need to
establish what your needed unique characters are and just adjust the limits
of he cells by whatever number of characters you end up with



"DBuche" wrote:

I need a way to generate over 1200 unique two letter combinations. I've been
reading past posts that explain ways to use the MATCH and VLOOKUP functions
to convert numbers to text, but have not found the solution yet. Any help
would be greatly appreciated.

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Seed numbers for random number generation, uniform distribution darebo Excel Discussion (Misc queries) 3 April 21st 23 09:02 PM
How do you create a random number generator in Excel? gmrobillard Excel Worksheet Functions 5 March 23rd 05 09:10 AM
How do I find random number in list of random alpha? (Position is. jlahealth-partners Excel Discussion (Misc queries) 0 February 8th 05 05:31 PM
Random number generator Philippe L. Balmanno Excel Worksheet Functions 4 December 17th 04 07:42 AM
Random # Generator vamosj Excel Worksheet Functions 0 November 8th 04 07:14 PM


All times are GMT +1. The time now is 11:52 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"