A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Excel » Worksheet Functions
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Cell update delay



 
 
Thread Tools Display Modes
  #1  
Old January 4th, 2010, 12:36 PM posted to microsoft.public.excel.worksheet.functions
Bob_hc
external usenet poster
 
Posts: 3
Default Cell update delay

Hi,

I have a spreadsheet with two cells that are linked to an external value.
However I want one of these cells to only update every second. This is
basically so I can see the difference between what the external value is now,
and what it was a second ago.

Any advice?

Thanks
  #2  
Old January 4th, 2010, 02:09 PM posted to microsoft.public.excel.worksheet.functions
ryguy7272
external usenet poster
 
Posts: 1,593
Default Cell update delay

Take a look at this:
http://www.cpearson.com/Excel/OnTime.aspx

If you do it once per second, it will (probably) take over control of your
system.

Good luck!!

--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"Bob_hc" wrote:

Hi,

I have a spreadsheet with two cells that are linked to an external value.
However I want one of these cells to only update every second. This is
basically so I can see the difference between what the external value is now,
and what it was a second ago.

Any advice?

Thanks

  #3  
Old January 4th, 2010, 02:16 PM posted to microsoft.public.excel.worksheet.functions
ryguy7272
external usenet poster
 
Posts: 1,593
Default Cell update delay

Also, you could try something like this:
Private Sub Worksheet_Change(ByVal Target As Range)

Application.Calculation = xlCalculationManual
Application.ScreenUpdating = False
Sheets("Sheet1").Activate
Range("A1").Select
Selection.Calculate

End Sub

Right-click on the tab of Sheet1 and paste the code into the window that
opens (don't put the code in a module).

--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"ryguy7272" wrote:

Take a look at this:
http://www.cpearson.com/Excel/OnTime.aspx

If you do it once per second, it will (probably) take over control of your
system.

Good luck!!

--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"Bob_hc" wrote:

Hi,

I have a spreadsheet with two cells that are linked to an external value.
However I want one of these cells to only update every second. This is
basically so I can see the difference between what the external value is now,
and what it was a second ago.

Any advice?

Thanks

  #4  
Old January 4th, 2010, 03:06 PM posted to microsoft.public.excel.worksheet.functions
Bob_hc
external usenet poster
 
Posts: 3
Default Cell update delay

Thanks for your reply, I'll try out your suggestions.

But is there a way to throttle the update rate of a cell. I know if you type
application.rtd.throttleinterval = 1000 in the immediate window it will delay
the update rate of the whole workbook, but I want this instruction for only a
particular cell. Any ideas?

Hope this makes sense!

"ryguy7272" wrote:

Also, you could try something like this:
Private Sub Worksheet_Change(ByVal Target As Range)

Application.Calculation = xlCalculationManual
Application.ScreenUpdating = False
Sheets("Sheet1").Activate
Range("A1").Select
Selection.Calculate

End Sub

Right-click on the tab of Sheet1 and paste the code into the window that
opens (don't put the code in a module).

--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"ryguy7272" wrote:

Take a look at this:
http://www.cpearson.com/Excel/OnTime.aspx

If you do it once per second, it will (probably) take over control of your
system.

Good luck!!

--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"Bob_hc" wrote:

Hi,

I have a spreadsheet with two cells that are linked to an external value.
However I want one of these cells to only update every second. This is
basically so I can see the difference between what the external value is now,
and what it was a second ago.

Any advice?

Thanks

  #5  
Old January 4th, 2010, 03:14 PM posted to microsoft.public.excel.worksheet.functions
ryguy7272
external usenet poster
 
Posts: 1,593
Default Cell update delay

When I typed that in my Immediate Window and hit enter...nothing happened.

--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"Bob_hc" wrote:

Thanks for your reply, I'll try out your suggestions.

But is there a way to throttle the update rate of a cell. I know if you type
application.rtd.throttleinterval = 1000 in the immediate window it will delay
the update rate of the whole workbook, but I want this instruction for only a
particular cell. Any ideas?

Hope this makes sense!

"ryguy7272" wrote:

Also, you could try something like this:
Private Sub Worksheet_Change(ByVal Target As Range)

Application.Calculation = xlCalculationManual
Application.ScreenUpdating = False
Sheets("Sheet1").Activate
Range("A1").Select
Selection.Calculate

End Sub

Right-click on the tab of Sheet1 and paste the code into the window that
opens (don't put the code in a module).

--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"ryguy7272" wrote:

Take a look at this:
http://www.cpearson.com/Excel/OnTime.aspx

If you do it once per second, it will (probably) take over control of your
system.

Good luck!!

--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"Bob_hc" wrote:

Hi,

I have a spreadsheet with two cells that are linked to an external value.
However I want one of these cells to only update every second. This is
basically so I can see the difference between what the external value is now,
and what it was a second ago.

Any advice?

Thanks

  #6  
Old January 4th, 2010, 03:21 PM posted to microsoft.public.excel.worksheet.functions
Bob_hc
external usenet poster
 
Posts: 3
Default Cell update delay

What would now happen is if you link an external data source to a cell via an
rtd link, it will only update every second. In my case I am getting real time
data of the latest stock market prices/

"ryguy7272" wrote:

When I typed that in my Immediate Window and hit enter...nothing happened.

--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"Bob_hc" wrote:

Thanks for your reply, I'll try out your suggestions.

But is there a way to throttle the update rate of a cell. I know if you type
application.rtd.throttleinterval = 1000 in the immediate window it will delay
the update rate of the whole workbook, but I want this instruction for only a
particular cell. Any ideas?

Hope this makes sense!

"ryguy7272" wrote:

Also, you could try something like this:
Private Sub Worksheet_Change(ByVal Target As Range)

Application.Calculation = xlCalculationManual
Application.ScreenUpdating = False
Sheets("Sheet1").Activate
Range("A1").Select
Selection.Calculate

End Sub

Right-click on the tab of Sheet1 and paste the code into the window that
opens (don't put the code in a module).

--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"ryguy7272" wrote:

Take a look at this:
http://www.cpearson.com/Excel/OnTime.aspx

If you do it once per second, it will (probably) take over control of your
system.

Good luck!!

--
Ryan---
If this information was helpful, please indicate this by clicking ''Yes''.


"Bob_hc" wrote:

Hi,

I have a spreadsheet with two cells that are linked to an external value.
However I want one of these cells to only update every second. This is
basically so I can see the difference between what the external value is now,
and what it was a second ago.

Any advice?

Thanks

 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump


All times are GMT +1. The time now is 11:59 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.