<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	
	>
<channel>
	<title>
	Comments on: Generate Random Character String	</title>
	<atom:link href="https://excelzoom.com/generate-a-random-character-string/feed/" rel="self" type="application/rss+xml" />
	<link>https://excelzoom.com/generate-a-random-character-string/</link>
	<description>...because it&#039;s more than just a calculator</description>
	<lastBuildDate>Sat, 04 Feb 2017 19:25:00 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.2</generator>
	<item>
		<title>
		By: Hakeem Sisney		</title>
		<link>https://excelzoom.com/generate-a-random-character-string/#comment-1951</link>

		<dc:creator><![CDATA[Hakeem Sisney]]></dc:creator>
		<pubDate>Sat, 04 Feb 2017 19:25:00 +0000</pubDate>
		<guid isPermaLink="false">http://excelzoom.com/?p=453#comment-1951</guid>

					<description><![CDATA[Greetings, 

I&#039;m trying to populate twenty cells with a combination of 3 random characters. I&#039;ve gotten this far:
 
https://uploads.disquscdn.com/images/35b28e2bfb4111a374e01594e371353551e7cd82c5a4bd48f650f46e02b65238.png 

As you can see, many of the cells have combinations of three, but have the same letter twice (CFF), which is not correct for my assignment. I&#039;ve already figured it out on paper, I just wanted to see if there was a function in Excel for it. Any takers?]]></description>
			<content:encoded><![CDATA[<p>Greetings, </p>
<p>I&#8217;m trying to populate twenty cells with a combination of 3 random characters. I&#8217;ve gotten this far:</p>
<p><a href="https://uploads.disquscdn.com/images/35b28e2bfb4111a374e01594e371353551e7cd82c5a4bd48f650f46e02b65238.png" rel="nofollow ugc">https://uploads.disquscdn.com/images/35b28e2bfb4111a374e01594e371353551e7cd82c5a4bd48f650f46e02b65238.png</a> </p>
<p>As you can see, many of the cells have combinations of three, but have the same letter twice (CFF), which is not correct for my assignment. I&#8217;ve already figured it out on paper, I just wanted to see if there was a function in Excel for it. Any takers?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Scott DeLuzio		</title>
		<link>https://excelzoom.com/generate-a-random-character-string/#comment-1931</link>

		<dc:creator><![CDATA[Scott DeLuzio]]></dc:creator>
		<pubDate>Thu, 12 Jan 2017 16:56:00 +0000</pubDate>
		<guid isPermaLink="false">http://excelzoom.com/?p=453#comment-1931</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://excelzoom.com/generate-a-random-character-string/#comment-1929&quot;&gt;Mike Bundy&lt;/a&gt;.

I&#039;m glad it worked for you Mike!]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://excelzoom.com/generate-a-random-character-string/#comment-1929">Mike Bundy</a>.</p>
<p>I&#8217;m glad it worked for you Mike!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Mike Bundy		</title>
		<link>https://excelzoom.com/generate-a-random-character-string/#comment-1929</link>

		<dc:creator><![CDATA[Mike Bundy]]></dc:creator>
		<pubDate>Thu, 12 Jan 2017 12:24:00 +0000</pubDate>
		<guid isPermaLink="false">http://excelzoom.com/?p=453#comment-1929</guid>

					<description><![CDATA[Absolutely perfect for me, thank you. Just what I was looking for :)]]></description>
			<content:encoded><![CDATA[<p>Absolutely perfect for me, thank you. Just what I was looking for :)</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Scott DeLuzio		</title>
		<link>https://excelzoom.com/generate-a-random-character-string/#comment-1715</link>

		<dc:creator><![CDATA[Scott DeLuzio]]></dc:creator>
		<pubDate>Fri, 29 May 2015 21:58:00 +0000</pubDate>
		<guid isPermaLink="false">http://excelzoom.com/?p=453#comment-1715</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://excelzoom.com/generate-a-random-character-string/#comment-1714&quot;&gt;Michael Hortert&lt;/a&gt;.

It really depends on how many characters you are using in your strings. If you&#039;re using the example code to generate an 8 character string we&#039;re looking at 

1st character: 10 possible outcomes (0-9)
2nd character: 26 possible outcomes (A-Z)
3rd character: 26 possible outcomes (a-z)
4th character: 15 possible outcomes (various symbols)
5th character: 10 possible outcomes (0-9)
6th character: 26 possible outcomes (A-Z)
7th character: 26 possible outcomes (a-z)
8th character: 15 possible outcomes (various symbols)

Obviously the more characters you add, the more combinations are available before you start to see duplicates.

Unless you&#039;re filling an entire worksheet with random combinations like this, you probably won&#039;t be running into duplicates very often. My guess is you&#039;d hit memory limits before you hit a duplicate though. If you do, I suppose you could add a 9th character?]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://excelzoom.com/generate-a-random-character-string/#comment-1714">Michael Hortert</a>.</p>
<p>It really depends on how many characters you are using in your strings. If you&#8217;re using the example code to generate an 8 character string we&#8217;re looking at </p>
<p>1st character: 10 possible outcomes (0-9)<br />
2nd character: 26 possible outcomes (A-Z)<br />
3rd character: 26 possible outcomes (a-z)<br />
4th character: 15 possible outcomes (various symbols)<br />
5th character: 10 possible outcomes (0-9)<br />
6th character: 26 possible outcomes (A-Z)<br />
7th character: 26 possible outcomes (a-z)<br />
8th character: 15 possible outcomes (various symbols)</p>
<p>Obviously the more characters you add, the more combinations are available before you start to see duplicates.</p>
<p>Unless you&#8217;re filling an entire worksheet with random combinations like this, you probably won&#8217;t be running into duplicates very often. My guess is you&#8217;d hit memory limits before you hit a duplicate though. If you do, I suppose you could add a 9th character?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Michael Hortert		</title>
		<link>https://excelzoom.com/generate-a-random-character-string/#comment-1714</link>

		<dc:creator><![CDATA[Michael Hortert]]></dc:creator>
		<pubDate>Wed, 27 May 2015 12:30:40 +0000</pubDate>
		<guid isPermaLink="false">http://excelzoom.com/?p=453#comment-1714</guid>

					<description><![CDATA[Do we know how many random combinations this can generate before duplicates would be seen?]]></description>
			<content:encoded><![CDATA[<p>Do we know how many random combinations this can generate before duplicates would be seen?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Scott DeLuzio		</title>
		<link>https://excelzoom.com/generate-a-random-character-string/#comment-1581</link>

		<dc:creator><![CDATA[Scott DeLuzio]]></dc:creator>
		<pubDate>Tue, 17 Mar 2015 18:17:59 +0000</pubDate>
		<guid isPermaLink="false">http://excelzoom.com/?p=453#comment-1581</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://excelzoom.com/generate-a-random-character-string/#comment-1580&quot;&gt;Alex Kuhn&lt;/a&gt;.

Considering that there are a number of &quot;thanks for the tip&quot; and &quot;great advice&quot; comments on this post, and that there was no substantial explanation as to what didn&#039;t work in your situation, I&#039;m guessing that we are looking at a case of operator error.
However, if you can explain what you were trying to do, how you did it, what result you were expecting, and the actual result you got I would be happy to assist you with working through the problem.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://excelzoom.com/generate-a-random-character-string/#comment-1580">Alex Kuhn</a>.</p>
<p>Considering that there are a number of &#8220;thanks for the tip&#8221; and &#8220;great advice&#8221; comments on this post, and that there was no substantial explanation as to what didn&#8217;t work in your situation, I&#8217;m guessing that we are looking at a case of operator error.<br />
However, if you can explain what you were trying to do, how you did it, what result you were expecting, and the actual result you got I would be happy to assist you with working through the problem.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Alex Kuhn		</title>
		<link>https://excelzoom.com/generate-a-random-character-string/#comment-1580</link>

		<dc:creator><![CDATA[Alex Kuhn]]></dc:creator>
		<pubDate>Tue, 17 Mar 2015 13:28:25 +0000</pubDate>
		<guid isPermaLink="false">http://excelzoom.com/?p=453#comment-1580</guid>

					<description><![CDATA[Horrible. This did not help at all. I was very disappointed. The people who made this website should not make any more.]]></description>
			<content:encoded><![CDATA[<p>Horrible. This did not help at all. I was very disappointed. The people who made this website should not make any more.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Scott DeLuzio		</title>
		<link>https://excelzoom.com/generate-a-random-character-string/#comment-1550</link>

		<dc:creator><![CDATA[Scott DeLuzio]]></dc:creator>
		<pubDate>Fri, 20 Feb 2015 19:40:11 +0000</pubDate>
		<guid isPermaLink="false">http://excelzoom.com/?p=453#comment-1550</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://excelzoom.com/generate-a-random-character-string/#comment-1549&quot;&gt;Juliana Todesco&lt;/a&gt;.

I&#039;m glad this helped. Just note that it is possible using this method to duplicate values if used repeatedly. It is a truly random selection, so the tracking number 1-111-11111 has an equal chance of being generated the next time the formula is run as it did the first time the number was generated.
If duplicates are acceptable (although with the range of numbers you&#039;re using they are not very likely), then this method will work fine. If not, you may want to try sequential numbering to avoid duplicates.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://excelzoom.com/generate-a-random-character-string/#comment-1549">Juliana Todesco</a>.</p>
<p>I&#8217;m glad this helped. Just note that it is possible using this method to duplicate values if used repeatedly. It is a truly random selection, so the tracking number 1-111-11111 has an equal chance of being generated the next time the formula is run as it did the first time the number was generated.<br />
If duplicates are acceptable (although with the range of numbers you&#8217;re using they are not very likely), then this method will work fine. If not, you may want to try sequential numbering to avoid duplicates.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Juliana Todesco		</title>
		<link>https://excelzoom.com/generate-a-random-character-string/#comment-1549</link>

		<dc:creator><![CDATA[Juliana Todesco]]></dc:creator>
		<pubDate>Fri, 20 Feb 2015 19:29:42 +0000</pubDate>
		<guid isPermaLink="false">http://excelzoom.com/?p=453#comment-1549</guid>

					<description><![CDATA[This was very helpful!
With this information I was able to create random tracking numbers.
The format being: 1-111-11111
So the formula I entered:
=RANDBETWEEN(0,2)&#038;CHAR(45)&#038;RANDBETWEEN(100,999)&#038;CHAR(45)&#038;RANDBETWEEN(10000,99999)
The first number had to be either 1 or 2 and I couldn&#039;t have any of the numbers beginning with zero, so this is what I came up with!
Thanks again because I couldn&#039;t find a clear explanation anywhere else (the symbol breakdown was especially helpful!)]]></description>
			<content:encoded><![CDATA[<p>This was very helpful!<br />
With this information I was able to create random tracking numbers.<br />
The format being: 1-111-11111<br />
So the formula I entered:<br />
=RANDBETWEEN(0,2)&amp;CHAR(45)&amp;RANDBETWEEN(100,999)&amp;CHAR(45)&amp;RANDBETWEEN(10000,99999)<br />
The first number had to be either 1 or 2 and I couldn&#8217;t have any of the numbers beginning with zero, so this is what I came up with!<br />
Thanks again because I couldn&#8217;t find a clear explanation anywhere else (the symbol breakdown was especially helpful!)</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Ben Kusmin a/k/a Excel Esquire		</title>
		<link>https://excelzoom.com/generate-a-random-character-string/#comment-1477</link>

		<dc:creator><![CDATA[Ben Kusmin a/k/a Excel Esquire]]></dc:creator>
		<pubDate>Wed, 28 Jan 2015 18:26:10 +0000</pubDate>
		<guid isPermaLink="false">http://excelzoom.com/?p=453#comment-1477</guid>

					<description><![CDATA[Nice post Scott.  If you want to choose a random letter or character from a certain set of your choosing, you can also embed the CHOOSE function.  For example, the following formula returns a random vowel:
=CHAR(CHOOSE(RANDBETWEEN(1,5),65,69,73,79,85))
Vanna, can I buy a vowel?]]></description>
			<content:encoded><![CDATA[<p>Nice post Scott.  If you want to choose a random letter or character from a certain set of your choosing, you can also embed the CHOOSE function.  For example, the following formula returns a random vowel:<br />
=CHAR(CHOOSE(RANDBETWEEN(1,5),65,69,73,79,85))<br />
Vanna, can I buy a vowel?</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
