﻿<?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: Linking Excel to Web Data &#8211; The Easy Way to Update Inputs</title>
	<atom:link href="http://www.fimodo.com/2010/02/linking-excel-to-web-data-the-easy-way-to-update-inputs/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fimodo.com/2010/02/linking-excel-to-web-data-the-easy-way-to-update-inputs/</link>
	<description>Financial Modelling Experts sharing their knowledge</description>
	<lastBuildDate>Mon, 05 Dec 2011 21:58:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Philip Small</title>
		<link>http://www.fimodo.com/2010/02/linking-excel-to-web-data-the-easy-way-to-update-inputs/comment-page-1/#comment-632</link>
		<dc:creator>Philip Small</dc:creator>
		<pubDate>Tue, 07 Sep 2010 22:45:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.fimodo.com/?p=766#comment-632</guid>
		<description>if you are interested in this, there is a useful Yahoo Group called the Stock Market Functions Add-in. It is an add in that allows you to pull in specific data from web pages. Mostly aimed at the US due to the availability of investmetn data, it can be used for UK and other general data.

See

http://finance.dir.groups.yahoo.com/group/smf_addin/?v=1&amp;t=directory&amp;ch=web&amp;pub=groups&amp;sec=dir&amp;slk=1

There are also other functions that can bring stock prices and basic share information into excel similar to DDE links.</description>
		<content:encoded><![CDATA[<p>if you are interested in this, there is a useful Yahoo Group called the Stock Market Functions Add-in. It is an add in that allows you to pull in specific data from web pages. Mostly aimed at the US due to the availability of investmetn data, it can be used for UK and other general data.</p>
<p>See</p>
<p><a href="http://finance.dir.groups.yahoo.com/group/smf_addin/?v=1&amp;t=directory&amp;ch=web&amp;pub=groups&amp;sec=dir&amp;slk=1" rel="nofollow">http://finance.dir.groups.yahoo.com/group/smf_addin/?v=1&amp;t=directory&amp;ch=web&amp;pub=groups&amp;sec=dir&amp;slk=1</a></p>
<p>There are also other functions that can bring stock prices and basic share information into excel similar to DDE links.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joemar Galang</title>
		<link>http://www.fimodo.com/2010/02/linking-excel-to-web-data-the-easy-way-to-update-inputs/comment-page-1/#comment-616</link>
		<dc:creator>Joemar Galang</dc:creator>
		<pubDate>Fri, 13 Aug 2010 17:52:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.fimodo.com/?p=766#comment-616</guid>
		<description>What is qt? im using Excel 2007 and its not working</description>
		<content:encoded><![CDATA[<p>What is qt? im using Excel 2007 and its not working</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Stroud</title>
		<link>http://www.fimodo.com/2010/02/linking-excel-to-web-data-the-easy-way-to-update-inputs/comment-page-1/#comment-314</link>
		<dc:creator>John Stroud</dc:creator>
		<pubDate>Thu, 04 Feb 2010 01:12:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.fimodo.com/?p=766#comment-314</guid>
		<description>Rebecca,

Using the method above it is not possible to have Excel automatically update if the underlying data changes. In this example the data is &#039;pulled&#039; into Excel, rather than being &#039;pushed&#039;. However it is possible to achieve something similar by using one of the following;

To update the data every time the workbook is opened, replace the first line of the code above, Sub Update_Queries(), with Private Sub Workbook_Open() and copy the code into ThisWorkbook.

Or to udate every time the External Data worksheet is selected, replace the first line of the code with Private Sub Worksheet_Activate() and copy the code into the sheet object. In the download example it is the External Data sheet.

If you did want to continuously update the data in the background use a Do / Loop statement. This will continuously run the macro and Application.Wait(Now + TimeValue(&quot;0:00:10&quot;))  will pause the macro for 10 seconds before running it again. I would not recommend this approach as it would use processing power on your PC,  which may slow down other tasks. Also, the share price data that is available for free is delayed, so even with continuous updating the information will be 15 - 30 minutes old.

Regards,

John</description>
		<content:encoded><![CDATA[<p>Rebecca,</p>
<p>Using the method above it is not possible to have Excel automatically update if the underlying data changes. In this example the data is &#8216;pulled&#8217; into Excel, rather than being &#8216;pushed&#8217;. However it is possible to achieve something similar by using one of the following;</p>
<p>To update the data every time the workbook is opened, replace the first line of the code above, Sub Update_Queries(), with Private Sub Workbook_Open() and copy the code into ThisWorkbook.</p>
<p>Or to udate every time the External Data worksheet is selected, replace the first line of the code with Private Sub Worksheet_Activate() and copy the code into the sheet object. In the download example it is the External Data sheet.</p>
<p>If you did want to continuously update the data in the background use a Do / Loop statement. This will continuously run the macro and Application.Wait(Now + TimeValue(&#8220;0:00:10&#8243;))  will pause the macro for 10 seconds before running it again. I would not recommend this approach as it would use processing power on your PC,  which may slow down other tasks. Also, the share price data that is available for free is delayed, so even with continuous updating the information will be 15 &#8211; 30 minutes old.</p>
<p>Regards,</p>
<p>John</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rebecca L'Green</title>
		<link>http://www.fimodo.com/2010/02/linking-excel-to-web-data-the-easy-way-to-update-inputs/comment-page-1/#comment-313</link>
		<dc:creator>Rebecca L'Green</dc:creator>
		<pubDate>Wed, 03 Feb 2010 04:31:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.fimodo.com/?p=766#comment-313</guid>
		<description>Hej John,

I have been seeing this done before for share prices and wondered how it was done. Now I know thanks to you. Is there a way of making the Excel link always reloading when the online data changes? This has some risj but I wonder anway.

RLG</description>
		<content:encoded><![CDATA[<p>Hej John,</p>
<p>I have been seeing this done before for share prices and wondered how it was done. Now I know thanks to you. Is there a way of making the Excel link always reloading when the online data changes? This has some risj but I wonder anway.</p>
<p>RLG</p>
]]></content:encoded>
	</item>
</channel>
</rss>

