<?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: Set Excel Zoom Level	</title>
	<atom:link href="https://excelzoom.com/set-excel-zoom-level/feed/" rel="self" type="application/rss+xml" />
	<link>https://excelzoom.com/set-excel-zoom-level/</link>
	<description>...because it&#039;s more than just a calculator</description>
	<lastBuildDate>Fri, 20 Feb 2015 23:22:36 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.2</generator>
	<item>
		<title>
		By: Scott DeLuzio		</title>
		<link>https://excelzoom.com/set-excel-zoom-level/#comment-1552</link>

		<dc:creator><![CDATA[Scott DeLuzio]]></dc:creator>
		<pubDate>Fri, 20 Feb 2015 23:22:36 +0000</pubDate>
		<guid isPermaLink="false">http://excelzoom.com/?p=39#comment-1552</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://excelzoom.com/set-excel-zoom-level/#comment-1551&quot;&gt;Michael Spencer&lt;/a&gt;.

Hi Michael. I believe it is compatible with all versions of Excel. What version are you using? I just double checked it on 2010, and it worked fine.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://excelzoom.com/set-excel-zoom-level/#comment-1551">Michael Spencer</a>.</p>
<p>Hi Michael. I believe it is compatible with all versions of Excel. What version are you using? I just double checked it on 2010, and it worked fine.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Michael Spencer		</title>
		<link>https://excelzoom.com/set-excel-zoom-level/#comment-1551</link>

		<dc:creator><![CDATA[Michael Spencer]]></dc:creator>
		<pubDate>Fri, 20 Feb 2015 22:57:03 +0000</pubDate>
		<guid isPermaLink="false">http://excelzoom.com/?p=39#comment-1551</guid>

					<description><![CDATA[This macro bombs out (runtime error)  right at the 

Sheets.Select  line

Is it compatible with all versions of Excel?]]></description>
			<content:encoded><![CDATA[<p>This macro bombs out (runtime error)  right at the </p>
<p>Sheets.Select  line</p>
<p>Is it compatible with all versions of Excel?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Reuben		</title>
		<link>https://excelzoom.com/set-excel-zoom-level/#comment-929</link>

		<dc:creator><![CDATA[Reuben]]></dc:creator>
		<pubDate>Wed, 23 Oct 2013 23:04:56 +0000</pubDate>
		<guid isPermaLink="false">http://excelzoom.com/?p=39#comment-929</guid>

					<description><![CDATA[Very helpful!!, It worked very nice, thanks;  I am wondering if there is any way that I can block the zoom level, let&#039;s say to 50% in order that always keeps the same zoom level, so the zoom level can not be modified.
Thanks]]></description>
			<content:encoded><![CDATA[<p>Very helpful!!, It worked very nice, thanks;  I am wondering if there is any way that I can block the zoom level, let&#8217;s say to 50% in order that always keeps the same zoom level, so the zoom level can not be modified.<br />
Thanks</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Scott		</title>
		<link>https://excelzoom.com/set-excel-zoom-level/#comment-865</link>

		<dc:creator><![CDATA[Scott]]></dc:creator>
		<pubDate>Thu, 01 Nov 2012 19:44:48 +0000</pubDate>
		<guid isPermaLink="false">http://excelzoom.com/?p=39#comment-865</guid>

					<description><![CDATA[&lt;a href=&quot;#comment-864&quot; rel=&quot;nofollow&quot;&gt;@Shannon &lt;/a&gt; 
To some extent, I can see both arguments. While you&#039;re right that simply changing the zoom from say 50% to 100% doesn&#039;t change the layout, what it does do, is change how the data in the cells looks. 

For example, open up a new Excel file (so you don&#039;t mess with the Supervisor&#039;s file). Set the zoom level to 50%. Then type in a long sentence in cell A1 (your street address, or anything that makes the text longer than the cell is wide). After you&#039;re done, double click the little line separating column A, and column B at the top of the spreadsheet so that it expands column A to fit the contents of the cell. (My street address auto-adjusted to a column width of 45.71).

Now, increase the zoom to 100%. Notice that the text you just typed still appears within cell A1. However, if you were to double click the line between columns A and B again to fit the contents of cell A1, it would re-adjust the column width to a slightly smaller size. (Again, resizing the column with my address reduced the column to 42.14).

What your supervisor might be witnessing is the effect of another user who (a) adjusts the zoom level, and (b) resizes the columns. When the supervisor then tries to put the zoom back to where she last had it, all the columns probably seem to be a bit off.

Unfortunately for your supervisor, content can be displayed differently when viewed on different monitors, or at different screen resolutions. What is comfortable for her to view on her computer might look obnoxiously big, or insanely small on your monitor. To fix this, you HAVE to adjust the resolution so you can read what&#039;s there. Unfortunately, adjusting the column widths or row heights might be necessary for you to see what&#039;s in each cell. The same is true for the supervisor when she ultimately re-opens the file.

A macro that auto adjusts the columns/rows might solve the problem. You can set a button in the workbook that you/your supervisor clicks to adjust the columns/rows as needed.

Something like this might just do the trick:
Sub AutoFit()
    Cells.Select
    Cells.EntireRow.AutoFit
    Cells.EntireColumn.AutoFit
End Sub

Try it out on a &quot;test&quot; worksheet so you don&#039;t create more work for you or your supervisor.
Hope this helps!]]></description>
			<content:encoded><![CDATA[<p><a href="#comment-864" rel="nofollow">@Shannon </a><br />
To some extent, I can see both arguments. While you&#8217;re right that simply changing the zoom from say 50% to 100% doesn&#8217;t change the layout, what it does do, is change how the data in the cells looks. </p>
<p>For example, open up a new Excel file (so you don&#8217;t mess with the Supervisor&#8217;s file). Set the zoom level to 50%. Then type in a long sentence in cell A1 (your street address, or anything that makes the text longer than the cell is wide). After you&#8217;re done, double click the little line separating column A, and column B at the top of the spreadsheet so that it expands column A to fit the contents of the cell. (My street address auto-adjusted to a column width of 45.71).</p>
<p>Now, increase the zoom to 100%. Notice that the text you just typed still appears within cell A1. However, if you were to double click the line between columns A and B again to fit the contents of cell A1, it would re-adjust the column width to a slightly smaller size. (Again, resizing the column with my address reduced the column to 42.14).</p>
<p>What your supervisor might be witnessing is the effect of another user who (a) adjusts the zoom level, and (b) resizes the columns. When the supervisor then tries to put the zoom back to where she last had it, all the columns probably seem to be a bit off.</p>
<p>Unfortunately for your supervisor, content can be displayed differently when viewed on different monitors, or at different screen resolutions. What is comfortable for her to view on her computer might look obnoxiously big, or insanely small on your monitor. To fix this, you HAVE to adjust the resolution so you can read what&#8217;s there. Unfortunately, adjusting the column widths or row heights might be necessary for you to see what&#8217;s in each cell. The same is true for the supervisor when she ultimately re-opens the file.</p>
<p>A macro that auto adjusts the columns/rows might solve the problem. You can set a button in the workbook that you/your supervisor clicks to adjust the columns/rows as needed.</p>
<p>Something like this might just do the trick:<br />
Sub AutoFit()<br />
    Cells.Select<br />
    Cells.EntireRow.AutoFit<br />
    Cells.EntireColumn.AutoFit<br />
End Sub</p>
<p>Try it out on a &#8220;test&#8221; worksheet so you don&#8217;t create more work for you or your supervisor.<br />
Hope this helps!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Shannon		</title>
		<link>https://excelzoom.com/set-excel-zoom-level/#comment-864</link>

		<dc:creator><![CDATA[Shannon]]></dc:creator>
		<pubDate>Thu, 01 Nov 2012 19:06:11 +0000</pubDate>
		<guid isPermaLink="false">http://excelzoom.com/?p=39#comment-864</guid>

					<description><![CDATA[I have a Supervisor who insists that zooming &quot;in&quot; or &quot;out&quot; ruins her excel spread sheets... See one of the e-mails below complaining how she has to &quot;fix it&quot;. 

&quot;I had to go in and re-adjust the entire log b/c it was zoomed to 100%. It threw off the rows and columns.&quot;

This is frustrating to me because I know it is BS.

Is there any literature you can point me towards? To prove to her it does not change or &quot;throw off&quot; the columns.

Any info would be appreciated.

Sincerely, 
Smarter than the Supervisor]]></description>
			<content:encoded><![CDATA[<p>I have a Supervisor who insists that zooming &#8220;in&#8221; or &#8220;out&#8221; ruins her excel spread sheets&#8230; See one of the e-mails below complaining how she has to &#8220;fix it&#8221;. </p>
<p>&#8220;I had to go in and re-adjust the entire log b/c it was zoomed to 100%. It threw off the rows and columns.&#8221;</p>
<p>This is frustrating to me because I know it is BS.</p>
<p>Is there any literature you can point me towards? To prove to her it does not change or &#8220;throw off&#8221; the columns.</p>
<p>Any info would be appreciated.</p>
<p>Sincerely,<br />
Smarter than the Supervisor</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Amy Patterson		</title>
		<link>https://excelzoom.com/set-excel-zoom-level/#comment-822</link>

		<dc:creator><![CDATA[Amy Patterson]]></dc:creator>
		<pubDate>Sun, 17 Jun 2012 18:10:27 +0000</pubDate>
		<guid isPermaLink="false">http://excelzoom.com/?p=39#comment-822</guid>

					<description><![CDATA[&lt;a href=&quot;#comment-83&quot; rel=&quot;nofollow&quot;&gt;@Sandy  &lt;/a&gt; 
Private Sub Chart_Activate()
ActiveWindow.Zoom = 130
End Sub]]></description>
			<content:encoded><![CDATA[<p><a href="#comment-83" rel="nofollow">@Sandy  </a><br />
Private Sub Chart_Activate()<br />
ActiveWindow.Zoom = 130<br />
End Sub</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Sandy		</title>
		<link>https://excelzoom.com/set-excel-zoom-level/#comment-83</link>

		<dc:creator><![CDATA[Sandy]]></dc:creator>
		<pubDate>Thu, 23 Jul 2009 12:50:57 +0000</pubDate>
		<guid isPermaLink="false">http://excelzoom.com/?p=39#comment-83</guid>

					<description><![CDATA[The &quot;Set Zoom level on all worksheets&quot; Macro is successful in setting the zoom on worksheet tabs however it does not set the zoom on tabs that contain graphs.  Is there a way to fix this?  I don&#039;t know much about macros but I&#039;m working with over 100+ graphs and it would be really helpful to not have to change the zoom on each worksheet.  Please help!

Thanks!]]></description>
			<content:encoded><![CDATA[<p>The &#8220;Set Zoom level on all worksheets&#8221; Macro is successful in setting the zoom on worksheet tabs however it does not set the zoom on tabs that contain graphs.  Is there a way to fix this?  I don&#8217;t know much about macros but I&#8217;m working with over 100+ graphs and it would be really helpful to not have to change the zoom on each worksheet.  Please help!</p>
<p>Thanks!</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
