<?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/"
		>
<channel>
	<title>Comments on: Very Hidden Worksheets</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2006/07/20/very-hidden-worksheets/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2006/07/20/very-hidden-worksheets/</link>
	<description>Daily posts of Excel tips…and other stuff</description>
	<lastBuildDate>Wed, 08 Feb 2012 23:58:05 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Jeremy Bouverette</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/07/20/very-hidden-worksheets/#comment-56360</link>
		<dc:creator>Jeremy Bouverette</dc:creator>
		<pubDate>Fri, 31 Dec 2010 16:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1450#comment-56360</guid>
		<description>&lt;p&gt;I like to tie user level access into the Ribbon Controls.  This will limit SOME of how users can bypass some of the code, like protect workbook to stop sheets hiding and unhiding even after a password is entered.  If the user doesnt have that level of access to begin with, the button doesnt show up.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I like to tie user level access into the Ribbon Controls.  This will limit SOME of how users can bypass some of the code, like protect workbook to stop sheets hiding and unhiding even after a password is entered.  If the user doesnt have that level of access to begin with, the button doesnt show up.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim Buckingham</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/07/20/very-hidden-worksheets/#comment-43549</link>
		<dc:creator>Tim Buckingham</dc:creator>
		<pubDate>Wed, 27 Jan 2010 23:35:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1450#comment-43549</guid>
		<description>&lt;p&gt;Thanks Bob, &lt;/p&gt;
&lt;p&gt;I have been developing mulitple userforms and my brain was still thinking of the userforms when wrote my comments.  It should have read:&lt;/p&gt;
&lt;p&gt;Me.Visible=xlSheetVeryHidden &lt;/p&gt;
&lt;p&gt;not &lt;/p&gt;
&lt;p&gt;me.hide&lt;/p&gt;
&lt;p&gt;Now I best check that I have not coded my userform to say&lt;/p&gt;
&lt;p&gt;Me.visible = false&lt;/p&gt;
&lt;p&gt;note to self &quot;do not multitask while developing&quot;.&lt;br&gt;
Last week I could not remember how to unhide my carkeys or make visible my wallet.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thanks Bob, </p>
<p>I have been developing mulitple userforms and my brain was still thinking of the userforms when wrote my comments.  It should have read:</p>
<p>Me.Visible=xlSheetVeryHidden </p>
<p>not </p>
<p>me.hide</p>
<p>Now I best check that I have not coded my userform to say</p>
<p>Me.visible = false</p>
<p>note to self &#8220;do not multitask while developing&#8221;.<br />
Last week I could not remember how to unhide my carkeys or make visible my wallet.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bob Phillips</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/07/20/very-hidden-worksheets/#comment-43460</link>
		<dc:creator>Bob Phillips</dc:creator>
		<pubDate>Thu, 21 Jan 2010 13:00:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1450#comment-43460</guid>
		<description>&lt;p&gt;&quot;it is not fool proof&quot;&lt;/p&gt;
&lt;p&gt;Certainly isn&#039;t. Me.Hide on a worksheet?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>&#8220;it is not fool proof&#8221;</p>
<p>Certainly isn&#8217;t. Me.Hide on a worksheet?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tim buckingham</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/07/20/very-hidden-worksheets/#comment-43456</link>
		<dc:creator>tim buckingham</dc:creator>
		<pubDate>Thu, 21 Jan 2010 05:06:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1450#comment-43456</guid>
		<description>&lt;p&gt;ha ha trauling for vba code and found this thread.  very interesting.  It is all well and good to be able to unhide hidden sheets but you still need to be able to view the content.  I have used the following in the worksheet activate event for the sheets I have hidden and want to secure:&lt;/p&gt;
&lt;p&gt;Sub worksheet_activate()&lt;/p&gt;
&lt;p&gt;if application.username  &quot;username&quot; then&lt;/p&gt;
&lt;p&gt;sheets(1).activate&lt;br&gt;
With me&lt;br&gt;
.hide&lt;br&gt;
.cells.Font.ColorIndex = 2&lt;/p&gt;
&lt;p&gt;end if&lt;/p&gt;
&lt;p&gt;it is not fool proof but the confusion on the faces when they use their own sheets unhide routine and it truns text white and rehides the sheet is priceless and worth the fun&lt;/p&gt;
&lt;p&gt;Tim&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>ha ha trauling for vba code and found this thread.  very interesting.  It is all well and good to be able to unhide hidden sheets but you still need to be able to view the content.  I have used the following in the worksheet activate event for the sheets I have hidden and want to secure:</p>
<p>Sub worksheet_activate()</p>
<p>if application.username  &#8220;username&#8221; then</p>
<p>sheets(1).activate<br />
With me<br />
.hide<br />
.cells.Font.ColorIndex = 2</p>
<p>end if</p>
<p>it is not fool proof but the confusion on the faces when they use their own sheets unhide routine and it truns text white and rehides the sheet is priceless and worth the fun</p>
<p>Tim</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vikas</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/07/20/very-hidden-worksheets/#comment-39617</link>
		<dc:creator>Vikas</dc:creator>
		<pubDate>Sun, 31 May 2009 16:50:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1450#comment-39617</guid>
		<description>&lt;p&gt;Dear Dick Kusleika,&lt;/p&gt;
&lt;p&gt;Thank you very much for giving this information as while working on active X control I had make hidden one worksheet and I was not able to show the same. But because of your tips I have succeeded to reopen the workbook.&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Dear Dick Kusleika,</p>
<p>Thank you very much for giving this information as while working on active X control I had make hidden one worksheet and I was not able to show the same. But because of your tips I have succeeded to reopen the workbook.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: imho</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/07/20/very-hidden-worksheets/#comment-38704</link>
		<dc:creator>imho</dc:creator>
		<pubDate>Sat, 28 Mar 2009 20:54:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1450#comment-38704</guid>
		<description>&lt;p&gt;Very hidden sheets appear effortlessly when the book is uploaded in Google Docs :)&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Very hidden sheets appear effortlessly when the book is uploaded in Google Docs <img src='http://www.dailydoseofexcel.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AnnaLisa Lawson</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/07/20/very-hidden-worksheets/#comment-38358</link>
		<dc:creator>AnnaLisa Lawson</dc:creator>
		<pubDate>Sat, 07 Mar 2009 02:14:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1450#comment-38358</guid>
		<description>&lt;p&gt;I &quot;broke&quot; my workbook by SheetVeryHidden and couldn&#039;t find a worksheet I needed.  Gulp.&lt;br&gt;
Thanks to this post I was able to undo the damage.&lt;/p&gt;
&lt;p&gt;I am truly grateful for the expertise.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I &#8220;broke&#8221; my workbook by SheetVeryHidden and couldn&#8217;t find a worksheet I needed.  Gulp.<br />
Thanks to this post I was able to undo the damage.</p>
<p>I am truly grateful for the expertise.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Duy</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/07/20/very-hidden-worksheets/#comment-33725</link>
		<dc:creator>Duy</dc:creator>
		<pubDate>Sun, 20 Jul 2008 17:40:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1450#comment-33725</guid>
		<description>&lt;p&gt;thanks. it works for me. i&#039;m getting a mess with Hide/Unhide a WORKSHEET based on User&#039;s Role.&lt;br&gt;
Nice day&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>thanks. it works for me. i&#8217;m getting a mess with Hide/Unhide a WORKSHEET based on User&#8217;s Role.<br />
Nice day</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam 8421</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/07/20/very-hidden-worksheets/#comment-26875</link>
		<dc:creator>Adam 8421</dc:creator>
		<pubDate>Thu, 30 Aug 2007 07:12:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1450#comment-26875</guid>
		<description>&lt;p&gt;Chris,you don&#039;t have to put calculations sheet in the same workbook. The sheets available to users are your source data, where you can set queries or copy data procedures. The analysis layer shoul be in separate workbook in other part of network or at a stand-alone PC. If users need access to all or part of calculations results, you can publish them as HTML or as another workbook/sheet. You decide what you make available, but in form of pure data. Certainly, in such a case there is no real time access granted to users. You can however set procedures on the separated PC to update data (imported and published) e.g. every 60 minutes, if you need.&lt;br&gt;
Protecting both worksheets and workbooks proved to be very useful for me. I would never resign of it even if it is inconvenient for setting some procedures or activities. I must admit anyway that server-client solutions seem to be much safer. And it is nearly impossible that one of your colleagues knows how to break it.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Chris,you don&#8217;t have to put calculations sheet in the same workbook. The sheets available to users are your source data, where you can set queries or copy data procedures. The analysis layer shoul be in separate workbook in other part of network or at a stand-alone PC. If users need access to all or part of calculations results, you can publish them as HTML or as another workbook/sheet. You decide what you make available, but in form of pure data. Certainly, in such a case there is no real time access granted to users. You can however set procedures on the separated PC to update data (imported and published) e.g. every 60 minutes, if you need.<br />
Protecting both worksheets and workbooks proved to be very useful for me. I would never resign of it even if it is inconvenient for setting some procedures or activities. I must admit anyway that server-client solutions seem to be much safer. And it is nearly impossible that one of your colleagues knows how to break it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris</title>
		<link>http://www.dailydoseofexcel.com/archives/2006/07/20/very-hidden-worksheets/#comment-26854</link>
		<dc:creator>Chris</dc:creator>
		<pubDate>Wed, 29 Aug 2007 16:48:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1450#comment-26854</guid>
		<description>&lt;p&gt;Matt - yeah, it seems from everything I have read that if someone wants to break it, they will. We have a couple of sheets that have calculations and formulas on them that we don&#039;t want the user to see. &lt;/p&gt;
&lt;p&gt;Thanks for the help&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Matt &#8211; yeah, it seems from everything I have read that if someone wants to break it, they will. We have a couple of sheets that have calculations and formulas on them that we don&#8217;t want the user to see. </p>
<p>Thanks for the help</p>
]]></content:encoded>
	</item>
</channel>
</rss>

