<?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: Magnifying Linked Ranges</title>
	<atom:link href="http://www.dailydoseofexcel.com/archives/2007/07/17/magnifying-linked-ranges/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailydoseofexcel.com/archives/2007/07/17/magnifying-linked-ranges/</link>
	<description>Daily posts of Excel tips…and other stuff</description>
	<lastBuildDate>Thu, 09 Feb 2012 23:42:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: Steve</title>
		<link>http://www.dailydoseofexcel.com/archives/2007/07/17/magnifying-linked-ranges/#comment-25969</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Thu, 26 Jul 2007 19:57:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1701#comment-25969</guid>
		<description>&lt;p&gt;Alex J, thank you.  &lt;/p&gt;
&lt;p&gt;I missed that nuance, yes working fine in E2000, will have to clean my glasses next time I read instructions.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Alex J, thank you.  </p>
<p>I missed that nuance, yes working fine in E2000, will have to clean my glasses next time I read instructions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter Grebenik</title>
		<link>http://www.dailydoseofexcel.com/archives/2007/07/17/magnifying-linked-ranges/#comment-25789</link>
		<dc:creator>Peter Grebenik</dc:creator>
		<pubDate>Sat, 21 Jul 2007 09:12:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1701#comment-25789</guid>
		<description>&lt;p&gt;I use the picture tool and a wonderful piece of freeware called IrfanView to export really high quality GIFs from Excel.&lt;/p&gt;
&lt;p&gt;Option Explicit&lt;/p&gt;
&lt;p&gt;&#039;these two constants need to be personalized&lt;br&gt;
&#039;ensure that your default printer is set to the largest paper size possible (e.g. A2)&lt;br&gt;
Const sIrfanExe As String = &quot;C:Program FilesIrfanViewi_view32.exe&quot;&lt;br&gt;
Const sImageDirectory As String = &quot;z:&quot;&lt;/p&gt;
&lt;p&gt;Dim Rng As Range&lt;br&gt;
Dim dMagnifier As Double&lt;/p&gt;
&lt;p&gt;Sub CallCopyRangeToPicture()&lt;/p&gt;
&lt;p&gt;    dMagnifier = InputBox(&quot;Enter magnification factor&quot;, &quot;GIF Magnification&quot;, 1)&lt;/p&gt;
&lt;p&gt;    If Selection.Cells.Count  1 And Selection.Areas.Count = 1 Then&lt;br&gt;
        Set Rng = Selection&lt;br&gt;
    ElseIf ActiveSheet.PageSetup.PrintArea  &quot;&quot; Then&lt;br&gt;
        Set Rng = Range(ActiveSheet.PageSetup.PrintArea)&lt;br&gt;
    Else&lt;br&gt;
        Exit Sub&lt;br&gt;
    End If&lt;/p&gt;
&lt;p&gt;    CopyRangeToPicture Rng, dMagnifier&lt;br&gt;
End Sub&lt;/p&gt;
&lt;p&gt;Sub CopyRangeToPicture(Rng, dMagnifier)&lt;br&gt;
    Dim Pct As Picture&lt;br&gt;
    Dim wksTemp As Worksheet&lt;br&gt;
    Dim wkbTemp As Workbook&lt;br&gt;
    Dim sFName As String&lt;br&gt;
    Dim sCommand As String&lt;/p&gt;
&lt;p&gt;    Application.ScreenUpdating = False&lt;/p&gt;
&lt;p&gt;    sFName = sImageDirectory &amp; ActiveSheet.Name&lt;/p&gt;
&lt;p&gt;    Set wkbTemp = Workbooks.Add&lt;br&gt;
    Set wksTemp = ActiveSheet&lt;br&gt;
    wksTemp.PageSetup.PaperSize = Rng.Parent.PageSetup.PaperSize&lt;br&gt;
    wksTemp.PageSetup.Orientation = Rng.Parent.PageSetup.Orientation&lt;/p&gt;
&lt;p&gt;    Rng.Copy&lt;br&gt;
    Set Pct = wksTemp.Pictures.Add(Left:=1, Top:=1, Width:=Rng.Width, Height:=Rng.Height)&lt;br&gt;
    Application.CutCopyMode = False&lt;/p&gt;
&lt;p&gt;    With Pct&lt;br&gt;
        .Formula = Rng.Address(True, True, , True)&lt;br&gt;
        .Name = &quot;magnifier&quot;&lt;br&gt;
        .Height = Pct.Height * dMagnifier&lt;br&gt;
        .Width = Pct.Width * dMagnifier&lt;br&gt;
        .ShapeRange.Line.Visible = msoFalse&lt;br&gt;
        .ShapeRange.Fill.Visible = msoTrue&lt;br&gt;
        .ShapeRange.Fill.Solid&lt;br&gt;
        .ShapeRange.Fill.ForeColor.SchemeColor = 9&lt;br&gt;
        .ShapeRange.Fill.Transparency = 0#&lt;br&gt;
        .CopyPicture Appearance:=xlPrinter, Format:=xlPicture&lt;br&gt;
    End With&lt;br&gt;
    wkbTemp.Close False&lt;/p&gt;
&lt;p&gt;    If Dir(sFName &amp; &quot;.gif&quot;)  &quot;&quot; Then Kill sFName &amp; &quot;.gif&quot;&lt;/p&gt;
&lt;p&gt;    &#039;use IrfanView Command line syntax&lt;br&gt;
    sCommand = sIrfanExe &amp; &quot; /clippaste /convert=&quot; &amp; sFName &amp; &quot;.gif&quot;&lt;br&gt;
    Application.StatusBar = &quot;Calling IrfanView to save the file &quot; &amp; sFName &amp; &quot;.gif&quot;&lt;br&gt;
    Shell sCommand, vbNormalFocus&lt;/p&gt;
&lt;p&gt;    Application.StatusBar = False&lt;br&gt;
End Sub&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I use the picture tool and a wonderful piece of freeware called IrfanView to export really high quality GIFs from Excel.</p>
<p>Option Explicit</p>
<p>&#8216;these two constants need to be personalized<br />
&#8216;ensure that your default printer is set to the largest paper size possible (e.g. A2)<br />
Const sIrfanExe As String = &#8220;C:Program FilesIrfanViewi_view32.exe&#8221;<br />
Const sImageDirectory As String = &#8220;z:&#8221;</p>
<p>Dim Rng As Range<br />
Dim dMagnifier As Double</p>
<p>Sub CallCopyRangeToPicture()</p>
<p>    dMagnifier = InputBox(&#8220;Enter magnification factor&#8221;, &#8220;GIF Magnification&#8221;, 1)</p>
<p>    If Selection.Cells.Count  1 And Selection.Areas.Count = 1 Then<br />
        Set Rng = Selection<br />
    ElseIf ActiveSheet.PageSetup.PrintArea  &#8220;&#8221; Then<br />
        Set Rng = Range(ActiveSheet.PageSetup.PrintArea)<br />
    Else<br />
        Exit Sub<br />
    End If</p>
<p>    CopyRangeToPicture Rng, dMagnifier<br />
End Sub</p>
<p>Sub CopyRangeToPicture(Rng, dMagnifier)<br />
    Dim Pct As Picture<br />
    Dim wksTemp As Worksheet<br />
    Dim wkbTemp As Workbook<br />
    Dim sFName As String<br />
    Dim sCommand As String</p>
<p>    Application.ScreenUpdating = False</p>
<p>    sFName = sImageDirectory &amp; ActiveSheet.Name</p>
<p>    Set wkbTemp = Workbooks.Add<br />
    Set wksTemp = ActiveSheet<br />
    wksTemp.PageSetup.PaperSize = Rng.Parent.PageSetup.PaperSize<br />
    wksTemp.PageSetup.Orientation = Rng.Parent.PageSetup.Orientation</p>
<p>    Rng.Copy<br />
    Set Pct = wksTemp.Pictures.Add(Left:=1, Top:=1, Width:=Rng.Width, Height:=Rng.Height)<br />
    Application.CutCopyMode = False</p>
<p>    With Pct<br />
        .Formula = Rng.Address(True, True, , True)<br />
        .Name = &#8220;magnifier&#8221;<br />
        .Height = Pct.Height * dMagnifier<br />
        .Width = Pct.Width * dMagnifier<br />
        .ShapeRange.Line.Visible = msoFalse<br />
        .ShapeRange.Fill.Visible = msoTrue<br />
        .ShapeRange.Fill.Solid<br />
        .ShapeRange.Fill.ForeColor.SchemeColor = 9<br />
        .ShapeRange.Fill.Transparency = 0#<br />
        .CopyPicture Appearance:=xlPrinter, Format:=xlPicture<br />
    End With<br />
    wkbTemp.Close False</p>
<p>    If Dir(sFName &amp; &#8220;.gif&#8221;)  &#8220;&#8221; Then Kill sFName &amp; &#8220;.gif&#8221;</p>
<p>    &#8216;use IrfanView Command line syntax<br />
    sCommand = sIrfanExe &amp; &#8221; /clippaste /convert=&#8221; &amp; sFName &amp; &#8220;.gif&#8221;<br />
    Application.StatusBar = &#8220;Calling IrfanView to save the file &#8221; &amp; sFName &amp; &#8220;.gif&#8221;<br />
    Shell sCommand, vbNormalFocus</p>
<p>    Application.StatusBar = False<br />
End Sub</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DownUnder</title>
		<link>http://www.dailydoseofexcel.com/archives/2007/07/17/magnifying-linked-ranges/#comment-25751</link>
		<dc:creator>DownUnder</dc:creator>
		<pubDate>Fri, 20 Jul 2007 03:22:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1701#comment-25751</guid>
		<description>&lt;p&gt;Tim from Adelaide downunder.  have been playing with this linked ranges as discussed at site &quot;Dermot&quot; provided.  I would like to explore the possibility of a way to use this linked image to secure formulas and raw data from end users so they only use the image of the results.  Can&#039;t seem to find a way to use name ranges accross remote workbooks?  anyone have any ideas.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Tim from Adelaide downunder.  have been playing with this linked ranges as discussed at site &#8220;Dermot&#8221; provided.  I would like to explore the possibility of a way to use this linked image to secure formulas and raw data from end users so they only use the image of the results.  Can&#8217;t seem to find a way to use name ranges accross remote workbooks?  anyone have any ideas.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex J</title>
		<link>http://www.dailydoseofexcel.com/archives/2007/07/17/magnifying-linked-ranges/#comment-25741</link>
		<dc:creator>Alex J</dc:creator>
		<pubDate>Thu, 19 Jul 2007 20:09:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1701#comment-25741</guid>
		<description>&lt;p&gt;Steve,&lt;br&gt;
You can do as mike suggests, or ise [Shift][Edit] (on the menu bar, not right-click) to get [Copy Picture] and [Paste Picture].&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Steve,<br />
You can do as mike suggests, or ise [Shift][Edit] (on the menu bar, not right-click) to get [Copy Picture] and [Paste Picture].</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Alexander</title>
		<link>http://www.dailydoseofexcel.com/archives/2007/07/17/magnifying-linked-ranges/#comment-25740</link>
		<dc:creator>Mike Alexander</dc:creator>
		<pubDate>Thu, 19 Jul 2007 19:33:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1701#comment-25740</guid>
		<description>&lt;p&gt;Steve:&lt;br&gt;
Use the camera instead.&lt;br&gt;
To get to the camera tool, click on Tools -&gt; Customize&lt;br&gt;
Then in the activated dialog box, select Tools in the left list box.&lt;br&gt;
Find &quot;Camera&quot; in the right list box then drag and drop the icon to your toolbars up top.&lt;/p&gt;
&lt;p&gt;To create a linked picture:&lt;br&gt;
Select the range you need, then click the camera tool, then click anywhere on your spreadsheet to place the linked picture.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Steve:<br />
Use the camera instead.<br />
To get to the camera tool, click on Tools -&gt; Customize<br />
Then in the activated dialog box, select Tools in the left list box.<br />
Find &#8220;Camera&#8221; in the right list box then drag and drop the icon to your toolbars up top.</p>
<p>To create a linked picture:<br />
Select the range you need, then click the camera tool, then click anywhere on your spreadsheet to place the linked picture.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://www.dailydoseofexcel.com/archives/2007/07/17/magnifying-linked-ranges/#comment-25739</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Thu, 19 Jul 2007 19:22:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1701#comment-25739</guid>
		<description>&lt;p&gt;Followup, you can paste multiple images as links to an alternate file such as powerpoint or word, but they are not interactive back to the underlying data without vba code.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Followup, you can paste multiple images as links to an alternate file such as powerpoint or word, but they are not interactive back to the underlying data without vba code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Steve</title>
		<link>http://www.dailydoseofexcel.com/archives/2007/07/17/magnifying-linked-ranges/#comment-25738</link>
		<dc:creator>Steve</dc:creator>
		<pubDate>Thu, 19 Jul 2007 19:13:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1701#comment-25738</guid>
		<description>&lt;p&gt;I am currently using Excel 2000, and can not get this to work as stated above.  Paste picture link is not listed on Shift+RMouse click.&lt;/p&gt;
&lt;p&gt;I just get paste special..., and then paste link in a submenu (picture is not listed as an option for the link format).  So I assume the paste picture link is available only in Excel 2003 or greater.   Am I correct?&lt;/p&gt;
&lt;p&gt;I looked at the visual modelling example posted by dermot and the concept works in Excel 2000.  Now I would like to see if a paste link can be done in a picture box pre-created so as to get the same effect.&lt;/p&gt;
&lt;p&gt;I can copy, then select a pre-existing picture box, but the shift+rmouse key does not give the paste special..., just paste.&lt;/p&gt;
&lt;p&gt;If I select just paste, and interesting thing happens, I get a new picture box with the selected cells, which I can magnify &amp; move around.   But it&#039;s not a link!  Changing the underlying cells has no effect and it&#039;s of questionable use.  Any suggestions on an alternative approach?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I am currently using Excel 2000, and can not get this to work as stated above.  Paste picture link is not listed on Shift+RMouse click.</p>
<p>I just get paste special&#8230;, and then paste link in a submenu (picture is not listed as an option for the link format).  So I assume the paste picture link is available only in Excel 2003 or greater.   Am I correct?</p>
<p>I looked at the visual modelling example posted by dermot and the concept works in Excel 2000.  Now I would like to see if a paste link can be done in a picture box pre-created so as to get the same effect.</p>
<p>I can copy, then select a pre-existing picture box, but the shift+rmouse key does not give the paste special&#8230;, just paste.</p>
<p>If I select just paste, and interesting thing happens, I get a new picture box with the selected cells, which I can magnify &amp; move around.   But it&#8217;s not a link!  Changing the underlying cells has no effect and it&#8217;s of questionable use.  Any suggestions on an alternative approach?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mathsmagician</title>
		<link>http://www.dailydoseofexcel.com/archives/2007/07/17/magnifying-linked-ranges/#comment-25709</link>
		<dc:creator>mathsmagician</dc:creator>
		<pubDate>Thu, 19 Jul 2007 00:29:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1701#comment-25709</guid>
		<description>&lt;p&gt;Cheers Mike Alexander,&lt;/p&gt;
&lt;p&gt;Yes, it really works. &lt;/p&gt;
&lt;p&gt;It worked almost immediately. I sussed out what you have done, especially what you have for the day portion of the date. It is really very clever as your solution determines either 1st or 11th or 31, 2nd or 12th or 22nd, 3rd or 13th or 23rd, 4th or 14th, or 24th and so on.&lt;/p&gt;
&lt;p&gt;I have tried to sort it for a long time and gave up. &lt;/p&gt;
&lt;p&gt;Once again thank you with my best wishes from London UK&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Cheers Mike Alexander,</p>
<p>Yes, it really works. </p>
<p>It worked almost immediately. I sussed out what you have done, especially what you have for the day portion of the date. It is really very clever as your solution determines either 1st or 11th or 31, 2nd or 12th or 22nd, 3rd or 13th or 23rd, 4th or 14th, or 24th and so on.</p>
<p>I have tried to sort it for a long time and gave up. </p>
<p>Once again thank you with my best wishes from London UK</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Alexander</title>
		<link>http://www.dailydoseofexcel.com/archives/2007/07/17/magnifying-linked-ranges/#comment-25706</link>
		<dc:creator>Mike Alexander</dc:creator>
		<pubDate>Wed, 18 Jul 2007 21:48:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1701#comment-25706</guid>
		<description>&lt;p&gt;mathsmagician:&lt;br&gt;
If you copy the formula from this blog straight into Excel, be sure to re-type the quotes you see in the formula.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>mathsmagician:<br />
If you copy the formula from this blog straight into Excel, be sure to re-type the quotes you see in the formula.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike Alexander</title>
		<link>http://www.dailydoseofexcel.com/archives/2007/07/17/magnifying-linked-ranges/#comment-25705</link>
		<dc:creator>Mike Alexander</dc:creator>
		<pubDate>Wed, 18 Jul 2007 21:45:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.dailydoseofexcel.com/?p=1701#comment-25705</guid>
		<description>&lt;p&gt;mathsmagician:&lt;br&gt;
There may be a more elegant way, but this works for me.&lt;/p&gt;
&lt;p&gt;=DATE(&quot;20?&amp;RIGHT(A1,2),MID(RIGHT(A1,4),1,2),DAY(LEFT(A1,1+LEN(A1)-5)))&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>mathsmagician:<br />
There may be a more elegant way, but this works for me.</p>
<p>=DATE(&#8220;20?&amp;RIGHT(A1,2),MID(RIGHT(A1,4),1,2),DAY(LEFT(A1,1+LEN(A1)-5)))</p>
]]></content:encoded>
	</item>
</channel>
</rss>

