<?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/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>Password Archives - Excel Zoom</title>
	<atom:link href="https://excelzoom.com/tag/password/feed/" rel="self" type="application/rss+xml" />
	<link>https://excelzoom.com/tag/password/</link>
	<description>...because it&#039;s more than just a calculator</description>
	<lastBuildDate>Thu, 02 Apr 2020 00:26:53 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.2</generator>

<image>
	<url>https://excelzoom.com/wp-content/uploads/2022/04/favicon.ico</url>
	<title>Password Archives - Excel Zoom</title>
	<link>https://excelzoom.com/tag/password/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Generate Random Character String</title>
		<link>https://excelzoom.com/generate-a-random-character-string/</link>
					<comments>https://excelzoom.com/generate-a-random-character-string/#comments</comments>
		
		<dc:creator><![CDATA[Mark]]></dc:creator>
		<pubDate>Mon, 16 Dec 2013 21:39:34 +0000</pubDate>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Formula]]></category>
		<category><![CDATA[Password]]></category>
		<category><![CDATA[Random]]></category>
		<category><![CDATA[Shortcuts]]></category>
		<guid isPermaLink="false">http://excelzoom.com/?p=453</guid>

					<description><![CDATA[<p>You may find yourself faced with a need to generate random character strings for various reasons. Recently I needed to help a company set up email accounts for all of their employees on a new server. I was given the email address usernames but needed to create the passwords for each account. I didn&#8217;t want [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/generate-a-random-character-string/">Generate Random Character String</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>You may find yourself faced with a need to generate random character strings for various reasons.</p>
<p>Recently I needed to help a company set up email accounts for all of their employees on a new server. I was given the email address usernames but needed to create the passwords for each account. I didn&#8217;t want to be lazy and assign everyone the same password, or even an easily guessed sequential password, so I used the tip below to generate random character strings in Excel to give each user a unique and random password.</p>

<h2>How to Generate Random Character String in Excel</h2>
<p>In order to generate random character strings in Excel, you need to be able to generate random numbers, upper and lowercase letters, and special symbols. Excel has this functionality built in to help generate random character strings.</p>
<h2>Generate Random Number String</h2>
<p>To generate a random number string in Excel, simply use a formula like this:</p>
<pre>=RANDBETWEEN(0,9)</pre>
<p>This will randomly display a number between 0 and 9 each time the page is refreshed.</p>
<h2>Generate Random Uppercase Letter String</h2>
<pre>=CHAR(RANDBETWEEN(65,90))</pre>
<p>This will randomly display a letter between A-Z.</p>
<h2>Generate Random Lowercase Letter String</h2>
<pre>=CHAR(RANDBETWEEN(97,122))</pre>
<p>This will randomly display a letter between a-z.</p>
<h2>Generate Random Symbol String</h2>
<pre>=CHAR(RANDBETWEEN(33,47))</pre>
<p>This will randomly generate one of the following symbols: !&#8221;#$%&amp;'()*+,-./</p>
<p>*Note: the CHAR() formula in Excel will generate a lot of other symbols as well. However, if the purpose is to create a password that someone may have to type on their keyboard, you want to keep it simple and avoid symbols like ¶, Œ, or ©. While these symbols can be typed with a special combination of keystrokes, it isn&#8217;t likely that someone will want to remember how to type each of these characters.</p>
<h2>Generate a Random Password</h2>
<p>Good passwords tend to have at least eight characters and are a mix of uppercase letters, lowercase letters, numbers, and symbols. To do this, simply combine the above formulas into one formula by simply adding an ampersand (&#038;) in between each formula, like this:<br />
<code style="word-wrap: break-word;">=RANDBETWEEN(0,9)&CHAR(RANDBETWEEN(65,90))&CHAR(RANDBETWEEN(97,122))&CHAR(RANDBETWEEN(33,47))&RANDBETWEEN(0,9)&CHAR(RANDBETWEEN(65,90))&CHAR(RANDBETWEEN(97,122))&CHAR(RANDBETWEEN(33,47))</code>[/restrict]<br />
This would create something like 6Ib&#038;4Rj/ or 8Bs%3Xa+</p>
<p>You can have any combination of letters, numbers or symbols that you want by moving the formulas around. There&#8217;s also nothing saying you couldn&#8217;t have a longer password string by chaining on even more randomness to the formula.</p>
<p><strong>A word of caution!</strong> If you are using this to generate a list of passwords, for example, be aware that the list will automatically change every time you refresh your worksheet, or change the value of a cell, etc. To ensure you don&#8217;t lose these values once they&#8217;re created, select the list of random passwords, copy and paste them as <strong>values</strong>. This will prevent them from updating again.</p>
<p>Another thing to consider is that if you need to make sure that all values are unique, this method isn&#8217;t foolproof. While it may not be likely that you will get the same string more than once, it certainly is possible. One easy way to check for duplicates is to use Conditional Formatting on the list of cells. First, select all the cells where you will generate random character strings. Then on the Home tab, Styles group select Conditional Formatting > Highlight Cells Rules > Duplicate Values. In the first drop-down make sure &#8220;Duplicate&#8221; is selected, then choose a format in the drop-down. Click OK.</p>
<p>As your passwords are generated it will check for duplicates and highlight any that show up. I used this method on a quick test by copying the formula above down the entire column A (over 1 million random strings), and there were duplicates. </p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/generate-a-random-character-string/">Generate Random Character String</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://excelzoom.com/generate-a-random-character-string/feed/</wfw:commentRss>
			<slash:comments>15</slash:comments>
		
		
			</item>
		<item>
		<title>Protect a Worksheet Except for Individual Cells</title>
		<link>https://excelzoom.com/protect-a-worksheet-except-for-individual-cells/</link>
					<comments>https://excelzoom.com/protect-a-worksheet-except-for-individual-cells/#respond</comments>
		
		<dc:creator><![CDATA[Mark]]></dc:creator>
		<pubDate>Thu, 21 Jun 2012 19:00:12 +0000</pubDate>
				<category><![CDATA[Tips]]></category>
		<category><![CDATA[Cell]]></category>
		<category><![CDATA[Password]]></category>
		<guid isPermaLink="false">http://excelzoom.com/?p=335</guid>

					<description><![CDATA[<p>If you have ever used Excel to gather information from people in a pre-defined form setup, you know it can be frustrating when the responses contain added rows, columns, comments out of sight, etc. The purpose of taking the time to set up a form is so that you can get your data in a [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/protect-a-worksheet-except-for-individual-cells/">Protect a Worksheet Except for Individual Cells</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>If you have ever used Excel to gather information from people in a pre-defined form setup, you know it can be frustrating when the responses contain added rows, columns, comments out of sight, etc. The purpose of taking the time to set up a form is so that you can get your data in a consistent format/layout.</p>
<p>It&#8217;s actually pretty easy to protect your worksheet from people who might want to get creative with your hard work.</p>
<p>Here&#8217;s the steps to lock all cells in your workbook, except for the few individual cells you want people to input information to.<br />
</p>
<ol>
<li>Click the box to the left of column A (in between column A and row 1). This will select all cells.</li>
<li>Right click the same box – select “Format Cells” then click the “Protection” tab.</li>
<li>Make sure the “Locked” check box is checked.</li>
<li>Click “OK” These first few steps just made sure that all cells are locked. See steps 5-6 for unlocking individual cells.</li>
<li>Right click just the cell(s) you wish to have editable by the end user (i.e. unlocked).</li>
<li>Select “Format Cells” then click the “Protection” tab. Then un-check the “Locked” box. This will “unlock” the cells that you want the end user to be able to edit.</li>
<li>In newer versions of Excel (2007+), click the “Review” tab, then click “Protect Sheet” under the “Changes” group.<br />
In older versions of Excel (97-2003), this is found under the &#8220;Tools&#8221; menu, then &#8220;Protection&#8221;.</li>
<li>If you wish, enter a password in the prompt to be used to un-protect the sheet.<br />
Note: If no password is entered, anyone can repeat step #7 to un-protect the sheet.</li>
<li>Under “Allow all users of this worksheet to:” un-check all boxes except for “Select unlocked cells” then click OK.</li>
</ol>
<p>Users will now only be able to select and input into the cells that were unlocked in step #6. They won&#8217;t be able to insert or delete columns or rows, add comments, or any of the other actions listed in the Protect Sheet window.</p>
<p>It might also be a good idea to format your worksheet in such a way that the end user will know which cells can be (or should be) edited. For example, a different cell background or border color might be a good visual cue to someone that a cell is editable. Alternatively, you could type some generic text (i.e. &#8220;First Name&#8221;, &#8220;Last Name&#8221;, &#8220;Address&#8221;, etc.) into the cells, so  the users will know what is expected of them in the cells.</p>
<p>Now what happens if you enter a password, want to go back and edit your worksheet, but forget what the password was? Well in most cases, you are stuck. You won&#8217;t be able to edit anything other than the unlocked cells. That is, of course, unless you know <a href="https://excelzoom.com/2009/08/how-to-recover-lost-excel-passwords/">how to crack the password</a>.</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/protect-a-worksheet-except-for-individual-cells/">Protect a Worksheet Except for Individual Cells</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://excelzoom.com/protect-a-worksheet-except-for-individual-cells/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>How to Recover Lost Excel Passwords</title>
		<link>https://excelzoom.com/how-to-recover-lost-excel-passwords/</link>
					<comments>https://excelzoom.com/how-to-recover-lost-excel-passwords/#comments</comments>
		
		<dc:creator><![CDATA[Mark]]></dc:creator>
		<pubDate>Wed, 26 Aug 2009 18:30:52 +0000</pubDate>
				<category><![CDATA[Macros]]></category>
		<category><![CDATA[Automatic]]></category>
		<category><![CDATA[Password]]></category>
		<category><![CDATA[Shortcuts]]></category>
		<guid isPermaLink="false">http://excelzoom.com/?p=274</guid>

					<description><![CDATA[<p>This article will show you how to recover an excel password to unlock a workbook or worksheet. Let me preface this article by saying that this will not help you recover lost data, or gain access to protected data that you otherwise wouldn&#8217;t have access to.  What it will do is allow you to unlock [&#8230;]</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/how-to-recover-lost-excel-passwords/">How to Recover Lost Excel Passwords</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>This article will show you how to recover an excel password to unlock a workbook or worksheet. Let me preface this article by saying that this will not help you recover lost data, or gain access to protected data that you otherwise wouldn&#8217;t have access to.  What it will do is allow you to <strong>unlock a password protected worksheet in Excel</strong>, for instance, if you have forgot your excel password, so that you can edit it as necessary.  Simply put, if you don&#8217;t already have access to the worksheet, this macro will not help you.</p>
<p>Before we learn how to recover a protected excel sheet password, let&#8217;s figure out why people password protect worksheets to begin with.  By protecting a worksheet and the contents of locked cells, users can keep themselves or other users from:</p>
<ul>
<li>Accidentally (or intentionally) removing formulas, or other contents of locked cells</li>
<li>Adding or deleting rows and columns</li>
<li>Changing cell, column or row formats</li>
<li>Sorting data</li>
<li>Using AutoFilter or PivotTable reports</li>
<li>Editing objects or scenarios</li>
</ul>
<p><br />
Protecting a worksheet will <strong><span style="text-decoration: underline;">not</span></strong> keep users from</p>
<ul>
<li>Editing any unlocked cells in the worksheet</li>
<li>Viewing all data in the worksheet, regardless of if it is in a locked cell or not</li>
<li>Hacking excel passwords / Cracking excel passwords. Excel is not &#8216;secure&#8217;.</li>
</ul>
<p>Being able to unlock a password protected worksheet is useful, when</p>
<ul>
<li>You have forgotten the password on your own worksheet (forgotten excel passwords)</li>
<li>A co-worker, or other user has password protected a worksheet that you now need to edit, and they are not available to unlock the sheet for you</li>
<li>You have a need to perform an analysis of the data in a password protected worksheet, but are unable to do so due to the locked cells</li>
<li>You would like to sort/filter the data in a password protected worksheet, or create a PivotTable report from the data</li>
<li>Need to recover an excel password</li>
</ul>
<p>Since Microsoft Excel is not a &#8220;secure&#8221; program, it is very easy to unlock the password of a password protected worksheet.  This is because there are several different combinations of passwords that Excel will accept to unlock the worksheet.  For example, a worksheet with the password &#8220;treehouse&#8221;, can also be unlocked with the password &#8220;AAAABAABBBB/&#8221;.  The opposite is also true (i.e. protecting with the password &#8220;AAAABAABBBB/&#8221; can be unlocked with the password &#8220;treehouse&#8221;).  Go ahead; try locking a worksheet with the password treehouse, and use AAAABAABBBB/ to unlock it.</p>
<p>The macro code below will &#8220;unlock&#8221; one worksheet at a time, using the method used above.  It won&#8217;t provide you with the actual password someone typed in, but rather a random sequence of letters or symbols that will work to unlock the worksheet. It should not be used as an excel password hack or for breaking an excel password.</p>
<h2>Recover excel password</h2>
<p>Step 1 &#8211; <strong>Open the worksheet in Excel</strong> where you have forgotten your excel password. This is so we can try to recover protected excel sheet password with VBA.</p>
<p>Step 2 &#8211; <strong>Open the VBA Editor</strong> (ALT + F11) &#8211; see our guide <a href="https://excelzoom.com/how-to-open-excel-vba-editor/">How to open Excel VBA Editor</a> if you are unfamiliar with how to do this.</p>
<p>Step 3 &#8211; <strong>Insert a new module and use the VBA code below</strong> to find your forgot excel password.</p>
<p><code><br />
Sub PasswordRecovery()<br />
'<br />
'MACROS BY EXCELZOOM.COM<br />
Dim i As Integer, j As Integer, k As Integer<br />
Dim l As Integer, m As Integer, n As Integer<br />
Dim i1 As Integer, i2 As Integer, i3 As Integer<br />
Dim i4 As Integer, i5 As Integer, i6 As Integer<br />
On Error Resume Next<br />
For i = 65 To 66: For j = 65 To 66: For k = 65 To 66<br />
For l = 65 To 66: For m = 65 To 66: For i1 = 65 To 66<br />
For i2 = 65 To 66: For i3 = 65 To 66: For i4 = 65 To 66<br />
For i5 = 65 To 66: For i6 = 65 To 66: For n = 32 To 126<br />
ActiveSheet.Unprotect Chr(i) &amp; Chr(j) &amp; Chr(k) &amp; _<br />
Chr(l) &amp; Chr(m) &amp; Chr(i1) &amp; Chr(i2) &amp; Chr(i3) &amp; _<br />
Chr(i4) &amp; Chr(i5) &amp; Chr(i6) &amp; Chr(n)<br />
If ActiveSheet.ProtectContents = False Then<br />
MsgBox "One usable password is " &amp; Chr(i) &amp; Chr(j) &amp; _<br />
Chr(k) &amp; Chr(l) &amp; Chr(m) &amp; Chr(i1) &amp; Chr(i2) &amp; _<br />
Chr(i3) &amp; Chr(i4) &amp; Chr(i5) &amp; Chr(i6) &amp; Chr(n)<br />
Exit Sub<br />
End If<br />
Next: Next: Next: Next: Next: Next<br />
Next: Next: Next: Next: Next: Next<br />
End Sub<br />
</code></p>
<p>Step 4 &#8211; <strong>Run the VBA code (F5)</strong> to recover excel password. You will receive a pop-up like the below to recover the excel sheet password.</p>

<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>It is worth noting that Microsoft is quite clear on its stance that you need to remember or make a note of passwords when protecting a workbook or worksheet and will not offer help in order to recover a lost excel password. See the <a href="https://support.office.com/en-us/article/protect-a-workbook-7e365a4d-3e89-4616-84ca-1931257c1517?redirectSourcePath=%252fen-us%252farticle%252fRecover-a-password-to-open-a-workbook-or-worksheet-8ab9cb7b-eef3-485c-a669-a58816d043d9&amp;ui=en-US&amp;rs=en-US&amp;ad=US" target="_blank" rel="noopener">MS protect a workbook page</a>. So Microsoft cannot help if you have forgotten your excel password or need help recovering a password to open a workbook or worksheet (and probably rightly so!). We notice there is plenty of software available online to help unlock a password protected worksheet in Excel (for all versions of excel) however we like the VBA code noted above as a first option and haven&#8217;t tried and tested all third party applications enough to feel comfortable recommending on here.</p>
<p><em>* Update &#8211; Since this code is widely available online I have unrestricted it from our members area to make it available to all. I hope this helps as we all know how frustrating it can be when you are unable to access a worksheet that you need due to a password protected excel forgot password issue at work or at home. This should not be used to crack an excel protected sheet or break into worksheet you should not have access to. It is however, one useful method to unlock an excel password protected excel sheet.</em></p>
<p>Happy Excelling!  And remember, try not to forget that excel worksheet password in the first place if possible! :-)</p>
<p>The post <a rel="nofollow" href="https://excelzoom.com/how-to-recover-lost-excel-passwords/">How to Recover Lost Excel Passwords</a> appeared first on <a rel="nofollow" href="https://excelzoom.com">Excel Zoom</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://excelzoom.com/how-to-recover-lost-excel-passwords/feed/</wfw:commentRss>
			<slash:comments>12</slash:comments>
		
		
			</item>
	</channel>
</rss>
