<?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: Get Current Weather in Excel</title>
	<atom:link href="http://www.automateexcel.com/2005/05/07/get_current_weather_in_excel/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.automateexcel.com/2005/05/07/get_current_weather_in_excel/</link>
	<description>Everything Excel. Only Excel.</description>
	<lastBuildDate>Mon, 21 Nov 2011 07:25:47 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: JOSE</title>
		<link>http://www.automateexcel.com/2005/05/07/get_current_weather_in_excel/comment-page-1/#comment-1751</link>
		<dc:creator>JOSE</dc:creator>
		<pubDate>Wed, 27 Oct 2010 21:53:41 +0000</pubDate>
		<guid isPermaLink="false">#comment-1751</guid>
		<description>Hi,

How can I get this to retrieve Canadian cities weather?

Thank you</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>How can I get this to retrieve Canadian cities weather?</p>
<p>Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jordie.Jones</title>
		<link>http://www.automateexcel.com/2005/05/07/get_current_weather_in_excel/comment-page-1/#comment-1401</link>
		<dc:creator>Jordie.Jones</dc:creator>
		<pubDate>Mon, 04 Jan 2010 18:39:51 +0000</pubDate>
		<guid isPermaLink="false">#comment-1401</guid>
		<description>SO will this work with Office 2003? I will press the button and nothing happens. When I go to the Module, Im getting errors on the first &quot;/&quot; in &quot;url:=&quot;http://&quot;. Amazing concept though. I run a retail chain and I would love to autopopulate weather stats into my Performance chart before I send it to home office!
-Jordie</description>
		<content:encoded><![CDATA[<p>SO will this work with Office 2003? I will press the button and nothing happens. When I go to the Module, Im getting errors on the first &#8220;/&#8221; in &#8220;url:=&#8221;http://&#8221;. Amazing concept though. I run a retail chain and I would love to autopopulate weather stats into my Performance chart before I send it to home office!<br />
-Jordie</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Trevithick</title>
		<link>http://www.automateexcel.com/2005/05/07/get_current_weather_in_excel/comment-page-1/#comment-1324</link>
		<dc:creator>Mark Trevithick</dc:creator>
		<pubDate>Fri, 18 Sep 2009 19:20:26 +0000</pubDate>
		<guid isPermaLink="false">#comment-1324</guid>
		<description>I got the code to work substituting the new URL for the old, but all the current conditions are concatenated to a single line with &quot; &#124; &quot; characters and the occasional hex.

Is there an easy way to parse this line and display it correctly?</description>
		<content:encoded><![CDATA[<p>I got the code to work substituting the new URL for the old, but all the current conditions are concatenated to a single line with &#8221; | &#8221; characters and the occasional hex.</p>
<p>Is there an easy way to parse this line and display it correctly?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim Thomas</title>
		<link>http://www.automateexcel.com/2005/05/07/get_current_weather_in_excel/comment-page-1/#comment-1303</link>
		<dc:creator>Jim Thomas</dc:creator>
		<pubDate>Thu, 20 Aug 2009 03:26:31 +0000</pubDate>
		<guid isPermaLink="false">#comment-1303</guid>
		<description>If anyone is getting an Access Denied error it is because the website URL has changed from this original posting. it is now &#039;wunderground.com&#039;</description>
		<content:encoded><![CDATA[<p>If anyone is getting an Access Denied error it is because the website URL has changed from this original posting. it is now &#8216;wunderground.com&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark</title>
		<link>http://www.automateexcel.com/2005/05/07/get_current_weather_in_excel/comment-page-1/#comment-397</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Mon, 09 May 2005 14:57:21 +0000</pubDate>
		<guid isPermaLink="false">#comment-397</guid>
		<description>David, &lt;br /&gt;
&lt;br /&gt;
Thanks for testing it out, unfortunately I don&#039;t have Excel XP currently installed, however a quick search turned up this:&lt;br /&gt;
&lt;br /&gt;
It looks like to import a URL you need to use DATABINDING.  You can read more on it about halfway down &lt;a href=&quot;http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odc_xl2003_ta/html/odc_xl_Excel2003XMLIntro.asp&quot; rel=&quot;nofollow&quot;&gt;on this page.&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Just a guess: &lt;br /&gt;
&lt;br /&gt;
Change this line of code&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;
ActiveWorkbook.XmlMaps(&quot;weather&quot;).Import URL:=&quot;http://www.weatherunderground.com/auto/rss_full/&quot; &amp; _&lt;br /&gt;
                                                  state2search4 &amp; &quot;/&quot; &amp; city2search4Corrected &amp; &quot;.xml&quot;&lt;br /&gt;
&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
To this&lt;br /&gt;
&lt;b&gt;&lt;br /&gt;
ActiveWorkbook.XmlMaps(&quot;SalesOrder&quot;).DataBinding.LoadSettings  _&lt;br /&gt;
URL:=&quot;http://www.weatherunderground.com/auto/rss_full/&quot; &amp; _&lt;br /&gt;
                                                  state2search4 &amp; &quot;/&quot; &amp; city2search4Corrected &amp; &quot;.xml&quot;&lt;br /&gt;
    &#039;return it&lt;br /&gt;
    ActiveWorkbook.XmlMaps(&quot;weather&quot;).DataBinding.LoadSettings _&lt;br /&gt;
URL:=&quot;http://www.weatherunderground.com/auto/rss_full/&quot; &amp; _&lt;br /&gt;
                                                  state2search4 &amp; &quot;/&quot; &amp; city2search4Corrected &amp; &quot;.xml&quot;&lt;br /&gt;
&lt;br /&gt;
ActiveWorkbook.XmlMaps(&quot;weather&quot;).DataBinding.Refresh&lt;br /&gt;
&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
That works in 2003 also, and according to the article I linked to should work for you,, let me know how things turn out.&lt;br /&gt;
&lt;br /&gt;
mark&lt;br /&gt;
</description>
		<content:encoded><![CDATA[<p>David, </p>
<p>Thanks for testing it out, unfortunately I don&#8217;t have Excel XP currently installed, however a quick search turned up this:</p>
<p>It looks like to import a URL you need to use DATABINDING.  You can read more on it about halfway down <a href="http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odc_xl2003_ta/html/odc_xl_Excel2003XMLIntro.asp" rel="nofollow">on this page.</a></p>
<p>Just a guess: </p>
<p>Change this line of code<br />
<b><br />
ActiveWorkbook.XmlMaps(&#8220;weather&#8221;).Import URL:=&#8221;http://www.weatherunderground.com/auto/rss_full/&#8221; &amp; _<br />
                                                  state2search4 &amp; &#8220;/&#8221; &amp; city2search4Corrected &amp; &#8220;.xml&#8221;<br />
</b></p>
<p>To this<br />
<b><br />
ActiveWorkbook.XmlMaps(&#8220;SalesOrder&#8221;).DataBinding.LoadSettings  _<br />
URL:=&#8221;http://www.weatherunderground.com/auto/rss_full/&#8221; &amp; _<br />
                                                  state2search4 &amp; &#8220;/&#8221; &amp; city2search4Corrected &amp; &#8220;.xml&#8221;<br />
    &#8216;return it<br />
    ActiveWorkbook.XmlMaps(&#8220;weather&#8221;).DataBinding.LoadSettings _<br />
URL:=&#8221;http://www.weatherunderground.com/auto/rss_full/&#8221; &amp; _<br />
                                                  state2search4 &amp; &#8220;/&#8221; &amp; city2search4Corrected &amp; &#8220;.xml&#8221;</p>
<p>ActiveWorkbook.XmlMaps(&#8220;weather&#8221;).DataBinding.Refresh<br />
</b></p>
<p>That works in 2003 also, and according to the article I linked to should work for you,, let me know how things turn out.</p>
<p>mark</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Wasserman</title>
		<link>http://www.automateexcel.com/2005/05/07/get_current_weather_in_excel/comment-page-1/#comment-396</link>
		<dc:creator>David Wasserman</dc:creator>
		<pubDate>Mon, 09 May 2005 10:19:30 +0000</pubDate>
		<guid isPermaLink="false">#comment-396</guid>
		<description>Mark,&lt;br /&gt;
I had trouble getting the weather workbook to work.  I am working on Excel XP on Windows 2000 Professional. When I click the button to get the weather, nothing happens. When I remove the On Error line, I get an error with the XMLMaps(&quot;weather&quot;).&lt;br /&gt;
&lt;br /&gt;
Is there something I can do to fix this?&lt;br /&gt;
&lt;br /&gt;
Thank you.&lt;br /&gt;
&lt;br /&gt;
David</description>
		<content:encoded><![CDATA[<p>Mark,<br />
I had trouble getting the weather workbook to work.  I am working on Excel XP on Windows 2000 Professional. When I click the button to get the weather, nothing happens. When I remove the On Error line, I get an error with the XMLMaps(&#8220;weather&#8221;).</p>
<p>Is there something I can do to fix this?</p>
<p>Thank you.</p>
<p>David</p>
]]></content:encoded>
	</item>
</channel>
</rss>

