<?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>Wed, 17 Mar 2010 21:17:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<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>
	<item>
		<title>By: Andy Pope</title>
		<link>http://peltiertech.com/WordPress/axis-with-tick-marks-no-line/comment-page-1/#comment-13206</link>
		<dc:creator>Andy Pope</dc:creator>
		<pubDate>Thu, 16 Apr 2009 14:24:44 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1786#comment-13206</guid>
		<description>Danièle,

The font is Arial. The Box Drawing bit is the name of the specific glyph. 
If you display Unicode character set it is about 4/5ths of the way down the list.

Jon&#039;s right about the pixel offset. It&#039;s more prominent if you use the standard keyboard dash character. 

You could use this command in the Immediate window to create the character in the active cell. Then use copy/paste

activecell.Value = chrw(&amp;H2500)</description>
		<content:encoded><![CDATA[<p>Danièle,</p>
<p>The font is Arial. The Box Drawing bit is the name of the specific glyph.<br />
If you display Unicode character set it is about 4/5ths of the way down the list.</p>
<p>Jon&#8217;s right about the pixel offset. It&#8217;s more prominent if you use the standard keyboard dash character. </p>
<p>You could use this command in the Immediate window to create the character in the active cell. Then use copy/paste</p>
<p>activecell.Value = chrw(&amp;H2500)</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-13205</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Thu, 16 Apr 2009 14:24:16 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1786#comment-13205</guid>
		<description>Danièle -

What I meant is that the dash is guaranteed not to be in the middle of the label, so it will be offset from the &quot;actual&quot; tick mark. For my dash, I&#039;d probably use an en-dash (–) or an em-dash (—), which are Alt+0150 or Alt+0151 on the numeric keypad.

Here&#039;s a sample using an en-dash:

&lt;p align=&quot;center&quot;&gt;&lt;img src=&quot;http://peltiertech.com/images/2009-04/colstyleendash.png&quot; /&gt;&lt;/p&gt;

If I include horizontal gridlines, you can see that the dashes are a pixel lower than the gridlines. For quick &amp; dirty, I guess that&#039;s close enough.

&lt;p align=&quot;center&quot;&gt;&lt;img src=&quot;http://peltiertech.com/images/2009-04/colstyleendashgrid.png&quot; /&gt;&lt;br /&gt;&#160;&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Danièle -</p>
<p>What I meant is that the dash is guaranteed not to be in the middle of the label, so it will be offset from the &#8220;actual&#8221; tick mark. For my dash, I&#8217;d probably use an en-dash (–) or an em-dash (—), which are Alt+0150 or Alt+0151 on the numeric keypad.</p>
<p>Here&#8217;s a sample using an en-dash:</p>
<p align="center"><img src="http://peltiertech.com/images/2009-04/colstyleendash.png" /></p>
<p>If I include horizontal gridlines, you can see that the dashes are a pixel lower than the gridlines. For quick &#038; dirty, I guess that&#8217;s close enough.</p>
<p align="center"><img src="http://peltiertech.com/images/2009-04/colstyleendashgrid.png" /><br />&nbsp;</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-13204</link>
		<dc:creator>Danièle</dc:creator>
		<pubDate>Thu, 16 Apr 2009 14:04:48 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1786#comment-13204</guid>
		<description>&quot;quick and dirty&quot;?! Perfectionists..!
I had used previously the dummy series trick, but Jon, how would you go about offsetting the ticks vertically ( or horizontally)&quot;a pixel or 2&quot; ?
Thanks Andy for the format idea, but my character map does not have fonts Box Drawings Light Horizontal , and how do you use the Unicode U+2500?</description>
		<content:encoded><![CDATA[<p>&#8220;quick and dirty&#8221;?! Perfectionists..!<br />
I had used previously the dummy series trick, but Jon, how would you go about offsetting the ticks vertically ( or horizontally)&#8221;a pixel or 2&#8243; ?<br />
Thanks Andy for the format idea, but my character map does not have fonts Box Drawings Light Horizontal , and how do you use the Unicode U+2500?</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-13198</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Thu, 16 Apr 2009 11:37:48 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=1786#comment-13198</guid>
		<description>Andy - The dashes might also be offset vertically by a pixel or two. But for quick &amp; dirty, it&#039;s probably fine.</description>
		<content:encoded><![CDATA[<p>Andy &#8211; The dashes might also be offset vertically by a pixel or two. But for quick &amp; dirty, it&#8217;s probably fine.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
