<?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: Draw an Axis With Tick Marks But No Line</title>
	<atom:link href="http://peltiertech.com/WordPress/axis-with-tick-marks-no-line/feed/" rel="self" type="application/rss+xml" />
	<link>http://peltiertech.com/WordPress/axis-with-tick-marks-no-line/</link>
	<description>Peltier Tech Excel Charts and Programming Blog</description>
	<lastBuildDate>Mon, 21 May 2012 11:34:50 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/axis-with-tick-marks-no-line/comment-page-1/#comment-13428</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Fri, 24 Apr 2009 17:47:16 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1786#comment-13428</guid>
		<description>The Change event needs an actual change to a cell&#039;s contents: a changing value, or a change to the formula, not to its calculated value. But you could use the Calculate event to trigger the code you want to run.</description>
		<content:encoded><![CDATA[<p>The Change event needs an actual change to a cell&#8217;s contents: a changing value, or a change to the formula, not to its calculated value. But you could use the Calculate event to trigger the code you want to run.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ckz</title>
		<link>http://peltiertech.com/WordPress/axis-with-tick-marks-no-line/comment-page-1/#comment-13425</link>
		<dc:creator>ckz</dc:creator>
		<pubDate>Fri, 24 Apr 2009 16:23:35 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1786#comment-13425</guid>
		<description>Jon,

Is it possible to have a Change Event work based on a cell formula?  I have only read that the actual cell has to change.

I would like to have images appear, disappear on a summary worksheet based on the values being calculated on a different worksheet.

So far, the code only works if I change a specific value in a cell on the same worksheet.

Private Sub Worksheet_SelectionChange(ByVal Target As Range)
If Not Intersect(Range(&quot;f4&quot;), Target) Is Nothing Then
    
    If Intersect(Range(&quot;f4&quot;), Target) &lt; 5 Then
        ActiveSheet.Shapes(&quot;Object 2&quot;).Visible = True
    Else: ActiveSheet.Shapes(&quot;Object 2&quot;).Visible = False
    End If
End If

End Sub

Any suggestions?</description>
		<content:encoded><![CDATA[<p>Jon,</p>
<p>Is it possible to have a Change Event work based on a cell formula?  I have only read that the actual cell has to change.</p>
<p>I would like to have images appear, disappear on a summary worksheet based on the values being calculated on a different worksheet.</p>
<p>So far, the code only works if I change a specific value in a cell on the same worksheet.</p>
<p>Private Sub Worksheet_SelectionChange(ByVal Target As Range)<br />
If Not Intersect(Range(&#8220;f4&#8243;), Target) Is Nothing Then</p>
<p>    If Intersect(Range(&#8220;f4&#8243;), Target) &lt; 5 Then<br />
        ActiveSheet.Shapes(&#8220;Object 2&#8243;).Visible = True<br />
    Else: ActiveSheet.Shapes(&#8220;Object 2&#8243;).Visible = False<br />
    End If<br />
End If</p>
<p>End Sub</p>
<p>Any suggestions?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Danièle</title>
		<link>http://peltiertech.com/WordPress/axis-with-tick-marks-no-line/comment-page-1/#comment-13241</link>
		<dc:creator>Danièle</dc:creator>
		<pubDate>Fri, 17 Apr 2009 10:38:49 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1786#comment-13241</guid>
		<description>Thanks Jon and Andy. Your quick and dirty tips are as usual far from that, and thoroughly thought out for proportions and visual balance, and it is always great to see a graph where all fits well, and can be easily incorporated in a VBA module.
Derek, your trick is pretty quick, simple and effective too. 
Great!
Danièle</description>
		<content:encoded><![CDATA[<p>Thanks Jon and Andy. Your quick and dirty tips are as usual far from that, and thoroughly thought out for proportions and visual balance, and it is always great to see a graph where all fits well, and can be easily incorporated in a VBA module.<br />
Derek, your trick is pretty quick, simple and effective too.<br />
Great!<br />
Danièle</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/axis-with-tick-marks-no-line/comment-page-1/#comment-13217</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Thu, 16 Apr 2009 20:03:42 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1786#comment-13217</guid>
		<description>Just to clarify, because it took me 30 seconds to figure out your trick. 

Derek is adding a new XY series which has its endpoints at the top and bottom of the Y axis. He is displaying no markers, and a white line which obscures the axis line.

Here&#039;s the data, the initial chart, and the data added as a new (column) series. 
&lt;p align=&quot;center&quot;&gt;&lt;img src=&quot;http://peltiertech.com/images/2009-04/colwhiteaxis0.png&quot; /&gt; &#160; &lt;img src=&quot;http://peltiertech.com/images/2009-04/colwhiteaxis1.png&quot; /&gt; &#160; &lt;img src=&quot;http://peltiertech.com/images/2009-04/colwhiteaxis2.png&quot; /&gt;&lt;/p&gt;
Here the new series has been converted to an XY series, the XY series moved to the primary axis, and the series formatted to show no markers and a while line.
&lt;p align=&quot;center&quot;&gt;&lt;img src=&quot;http://peltiertech.com/images/2009-04/colwhiteaxis3.png&quot; /&gt; &#160; &lt;img src=&quot;http://peltiertech.com/images/2009-04/colwhiteaxis4.png&quot; /&gt; &#160; &lt;img src=&quot;http://peltiertech.com/images/2009-04/colwhiteaxis5.png&quot; /&gt;&lt;br /&gt;&#160;&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Just to clarify, because it took me 30 seconds to figure out your trick. </p>
<p>Derek is adding a new XY series which has its endpoints at the top and bottom of the Y axis. He is displaying no markers, and a white line which obscures the axis line.</p>
<p>Here&#8217;s the data, the initial chart, and the data added as a new (column) series. </p>
<p align="center"><img src="http://peltiertech.com/images/2009-04/colwhiteaxis0.png" /> &nbsp; <img src="http://peltiertech.com/images/2009-04/colwhiteaxis1.png" /> &nbsp; <img src="http://peltiertech.com/images/2009-04/colwhiteaxis2.png" /></p>
<p>Here the new series has been converted to an XY series, the XY series moved to the primary axis, and the series formatted to show no markers and a while line.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-04/colwhiteaxis3.png" /> &nbsp; <img src="http://peltiertech.com/images/2009-04/colwhiteaxis4.png" /> &nbsp; <img src="http://peltiertech.com/images/2009-04/colwhiteaxis5.png" /><br />&nbsp;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: derek</title>
		<link>http://peltiertech.com/WordPress/axis-with-tick-marks-no-line/comment-page-1/#comment-13215</link>
		<dc:creator>derek</dc:creator>
		<pubDate>Thu, 16 Apr 2009 19:33:16 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1786#comment-13215</guid>
		<description>Another quick and dirty method I often use is only slightly quicker and dirtier than Jon&#039;s helper series, because it is itself and XY scatter series. But it&#039;s slightly simpler:

	xy
0.5	0
0.5	6

If it chooses the secondary value scale, choose the primary again, then format the line so it&#039;s white and thick.  It will cover up the scale line but leave the scale ticks visible.</description>
		<content:encoded><![CDATA[<p>Another quick and dirty method I often use is only slightly quicker and dirtier than Jon&#8217;s helper series, because it is itself and XY scatter series. But it&#8217;s slightly simpler:</p>
<p>	xy<br />
0.5	0<br />
0.5	6</p>
<p>If it chooses the secondary value scale, choose the primary again, then format the line so it&#8217;s white and thick.  It will cover up the scale line but leave the scale ticks visible.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/axis-with-tick-marks-no-line/comment-page-1/#comment-13207</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Thu, 16 Apr 2009 14:29:03 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1786#comment-13207</guid>
		<description>Andy -

Your symbol is perfectly aligned:

&lt;p align=&quot;center&quot;&gt;&lt;img src=&quot;http://peltiertech.com/images/2009-04/colstylebdlhgrid.png&quot;&gt;&lt;br&gt;&#160;&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Andy -</p>
<p>Your symbol is perfectly aligned:</p>
<p align="center"><img src="http://peltiertech.com/images/2009-04/colstylebdlhgrid.png"/><br />&nbsp;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

