<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>NeoEGM.com &#187; Add-in</title>
	<atom:link href="https://www.neoegm.com/tag/add-in/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.neoegm.com</link>
	<description>Knowledge is inside</description>
	<lastBuildDate>Mon, 08 Jul 2024 05:38:01 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.2.39</generator>
	<item>
		<title>Excel random password generator</title>
		<link>https://www.neoegm.com/tech/software/excel-add-ins/excel-random-password-generator/</link>
		<comments>https://www.neoegm.com/tech/software/excel-add-ins/excel-random-password-generator/#comments</comments>
		<pubDate>Wed, 22 Jul 2009 17:42:22 +0000</pubDate>
		<dc:creator><![CDATA[NeoEGM]]></dc:creator>
				<category><![CDATA[Excel add-ins]]></category>
		<category><![CDATA[Add-in]]></category>
		<category><![CDATA[Download]]></category>
		<category><![CDATA[Freeware]]></category>
		<category><![CDATA[Generator]]></category>
		<category><![CDATA[GNU GPL]]></category>
		<category><![CDATA[MS Excel]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Password]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[Source Code]]></category>

		<guid isPermaLink="false">http://www.neoegm.com/?p=231</guid>
		<description><![CDATA[Sometimes you may have to generate automatically different random passwords. This could be a very easy task if you just had an Excel function like &#8220;RandomPassword&#8221;, so you could write: And get something like: Well, this is exactly the idea of the Add-In I&#8217;ve made&#8230; If this isn&#8217;t what you&#8217;re looking for, as an alternative, [&#8230;]<div class='yarpp-related-rss'>
<strong>
Related posts:<ol>
<li><a href="https://www.neoegm.com/tech/online-tools/php-random-password-generator/" rel="bookmark" title="PHP random password generator">PHP random password generator </a></li>
<li><a href="https://www.neoegm.com/tech/online-tools/random-password-generator/" rel="bookmark" title="Random password generator">Random password generator </a></li>
<li><a href="https://www.neoegm.com/tech/software/tools/office-document-property-resetter/" rel="bookmark" title="Office Document Property Resetter">Office Document Property Resetter </a></li>
</ol>
</div>
]]></description>
				<content:encoded><![CDATA[<p>Sometimes you may have to generate automatically different random passwords. This could be a very easy task if you just had an Excel function like &#8220;RandomPassword&#8221;, so you could write:</p>
<pre class="brush: plain; light: true; title: ; notranslate">
=RandomPassword(8)
</pre>
<p>And get something like:</p>
<pre class="brush: plain; light: true; title: ; notranslate">
e8NwB9Bi
</pre>
<p>Well, this is exactly the idea of the Add-In I&#8217;ve made&#8230;</p>
<p><img src="http://www.neoegm.com/wp-content/uploads/2009/07/randompassword.png" alt="Random Password" title="Random Password" width="484" height="378" class="aligncenter size-full wp-image-239" /></p>
<p>If this isn&#8217;t what you&#8217;re looking for, as an alternative, you can visit the <a href="http://www.neoegm.com/tech/online-tools/random-password-generator/">online random password generator</a>.</p>
<p><span id="more-231"></span></p>
<p>The function syntax is as follows:</p>
<pre class="brush: plain; light: true; title: ; notranslate">
=RandomPassword(length, [uppercase = TRUE], [numbers = TRUE],
[lowercase = TRUE])
</pre>
<p>Just as simple as that&#8230; Here are the download links:</p>
<div align="center">
<p class="download"><a href="http://download.neoegm.com/software/excel-random-password/Random Password.xlam">XLAM Add-in (Excel 2007)</a></p>
</div>
<div align="center">
<p class="download"><a href="http://download.neoegm.com/software/excel-random-password/Random Password.xlsx">Sample XLSX (Excel 2007)</a></p>
</div>
<div align="center">
<p class="download"><a href="http://download.neoegm.com/software/excel-random-password/Random Password.xla">XLA Add-in (Excel 2003)</a></p>
</div>
<div align="center">
<p class="download"><a href="http://download.neoegm.com/software/excel-random-password/Random Password.xls">Sample XLS (Excel 2003)</a></p>
</div>
<p>If you don&#8217;t know how you should install an Excel Add-in, keep looking into the site since I&#8217;ll write a post about that soon&#8230; By now, I can give you this guidelines:</p>
<p>1- Copy the corresponding version of the add-in (XLA or XLAM) to C:\Program Files\Microsoft Office\OfficeXX\Library (where XX is the Office version, being 12 for Office 2007)<br />
2- Follow the instructions given <a href="http://www.dslimited.biz/excel_tutorials/installadd-in.html">here</a> for Office 2003 or below, or take a look at the first part of <a href="http://peltiertech.com/WordPress/installing-an-add-in-in-excel-2007/">this</a> steps for Office 2007.</p>
<p><br/><br />
<a href="http://www.gnu.org/licenses/gpl-3.0.txt"><img src="http://www.neoegm.com/wp-content/uploads/2009/07/gplv3-127x511.png" alt="GNU GPL v3" title="GNU GPL v3" width="127" height="51" class="alignleft size-full wp-image-251" /></a>The code is licensed under the <a href="http://www.gnu.org/licenses/gpl-3.0.txt">GNU GPL v3</a>&#8230;</p>
<p><br/><br />
Just in case you want to see the function code without looking into the add-in:</p>
<pre class="brush: vb; collapse: true; light: false; title: ; toolbar: true; notranslate">
Function RandomPassword(Length As Integer, Optional Upper As Boolean = True, Optional Number As Boolean = True, Optional Lower As Boolean = True)
    If Not Upper And Not Lower And Not Number Then
        RandomPassword = &quot;&quot;;
        Exit Function
    End If

    Dim Ret As String
    Dim Num As Integer
    Dim Repeat As Boolean

    Randomize

    Chars = 26 * 2 + 10 '26 (a-z) + 26 (A-Z) + 10 (0-9)
        'a-z = 97-122
        'A-Z = 65-90
        '0-9 = 48-57

    For i = 1 To Length
        Repeat = False

        Num = Int(Chars * Rnd) 'Int((upperbound - lowerbound + 1) * Rnd + lowerbound)

        If Num &amp;amp;lt; 26 Then        'a-z
            If Lower Then
                Ret = Ret &amp; Chr(Num + 97)
            Else
                Repeat = True
            End If
        ElseIf Num &lt; 52 Then    'A-Z
            If Upper Then
                Ret = Ret &amp; Chr(Num - 26 + 65)
            Else
                Repeat = True
            End If
        ElseIf Num &lt; 62 Then    '0-9
            If Number Then
                Ret = Ret &amp; Chr(Num - 52 + 48)
            Else
                Repeat = True
            End If
        End If

        If Repeat Then
            i = i - 1
        End If
    Next i

    RandomPassword = Ret
End Function
</pre>
<h4>Incoming search terms for the article:</h4>
<ul>
<li><a href="https://www.neoegm.com/tech/software/excel-add-ins/excel-random-password-generator/" title="excel password generator">excel password generator</a></li>
<li><a href="https://www.neoegm.com/tech/software/excel-add-ins/excel-random-password-generator/" title="random password generator excel">random password generator excel</a></li>
<li><a href="https://www.neoegm.com/tech/software/excel-add-ins/excel-random-password-generator/" title="excel random password generator">excel random password generator</a></li>
<li><a href="https://www.neoegm.com/tech/software/excel-add-ins/excel-random-password-generator/" title="password generator excel">password generator excel</a></li>
<li><a href="https://www.neoegm.com/tech/software/excel-add-ins/excel-random-password-generator/" title="excel random password">excel random password</a></li>
<li><a href="https://www.neoegm.com/tech/software/excel-add-ins/excel-random-password-generator/" title="random password excel">random password excel</a></li>
<li><a href="https://www.neoegm.com/tech/software/excel-add-ins/excel-random-password-generator/" title="excel random string">excel random string</a></li>
<li><a href="https://www.neoegm.com/tech/software/excel-add-ins/excel-random-password-generator/" title="excel generate random password">excel generate random password</a></li>
<li><a href="https://www.neoegm.com/tech/software/excel-add-ins/excel-random-password-generator/" title="excel generate password">excel generate password</a></li>
<li><a href="https://www.neoegm.com/tech/software/excel-add-ins/excel-random-password-generator/" title="excel password generator formula">excel password generator formula</a></li>
</ul>
<div class='yarpp-related-rss'>
<strong><p>Related posts:<ol>
<li><a href="https://www.neoegm.com/tech/online-tools/php-random-password-generator/" rel="bookmark" title="PHP random password generator">PHP random password generator </a></li>
<li><a href="https://www.neoegm.com/tech/online-tools/random-password-generator/" rel="bookmark" title="Random password generator">Random password generator </a></li>
<li><a href="https://www.neoegm.com/tech/software/tools/office-document-property-resetter/" rel="bookmark" title="Office Document Property Resetter">Office Document Property Resetter </a></li>
</ol></p>
</div>
]]></content:encoded>
			<wfw:commentRss>https://www.neoegm.com/tech/software/excel-add-ins/excel-random-password-generator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
