Cell view real time.

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Sorry.. This is a great site don't get me wrong, however, sometimes I think the topics scroll too fast and therefore questions are missed.. correct me if I'm wrong but I know I posted a couple of questions and seen that it was like the 5th question down in a matter of seconds.. I also think that people don't often go to the following pages as figured that questions have already been resolved...
 
Upvote 0
easy solution is simply to post a reply to your own thread, thereby "bumping" it up to the top. the etiquette question is how long you wait for a reply. I would suggest that anything much sooner than about 12 hours is hastey - plenty of people here deliberately use the 'zero replies' option to check for unanswereed posts that are disappearing into the ether.

paddy
 
Upvote 0
Tim as far as I am aware you can only show real time with a recalculate routine which path I have been down before and had significant help from Tom Urtis and Ivan F Moala (I don't think I have thanked them enough for this help :biggrin: :biggrin: :biggrin: ). I tried finding the original post but it has been archived but I do have a hard copy which I can replicate if you want - there is a caveat in using Application.Ontime as you must open it and shut it down properly otherwise you will find the spreadsheet reopening on you even after you have closed it. The other problem is if you have a spreadsheet that takes forever to calculate this can become a real pain.
 
Upvote 0
On 2002-10-15 16:28, PaddyD wrote:
easy solution is simply to post a reply to your own thread, thereby "bumping" it up to the top. the etiquette question is how long you wait for a reply. I would suggest that anything much sooner than about 12 hours is hastey - plenty of people here deliberately use the 'zero replies' option to check for unanswereed posts that are disappearing into the ether.

paddy

Paddy, I notice students (not having a dig at you Tim) who have an assignment to do and left it till the last minute to ask for help regularily bump their post to the top by pleading every 2 minutes for a response. Seems to work for them though.
 
Upvote 0
On 2002-10-15 16:58, PaddyD wrote:
doesn't mean they should do it though :)

agreed, used to irritate me but then I got perverse pleasure out of watching and waiting to see them squirm trying to get an answer :biggrin:
 
Upvote 0
Here's one way to put a timer in a cell.
There are plenty of other ways, but this
will get you looking along these lines.

Post back if unsure;

<PRE><FONT color=#008000>'// Place this code in the Thisworkbook object module
</FONT>


Private Sub<FONT color=blue> Workbook</FONT>_Open()

<FONT color=#008000>'// Format the cell as required
</FONT>
<FONT color=blue>Range</FONT>("A1").NumberFormat = "mm/dd/yy hh:mm:ss"

StartTimer

<FONT color=blue>End Sub</FONT>



Private Sub<FONT color=blue> Workbook</FONT>_BeforeClose(Cancel <FONT color=blue>As</FONT> <FONT color=blue>Boolean</FONT>)

StopTimer

<FONT color=blue>End Sub</FONT>



<FONT color=#008000>'// Place this code in a STD Module
</FONT>
<FONT color=blue>Option Explicit</FONT>

<FONT color=blue>Dim </FONT>T



<FONT color=blue>Sub </FONT>StartTimer()

T = Now + TimeValue("00:00:01")

Application.OnTime T, "Update"

<FONT color=blue>End Sub</FONT>



<FONT color=blue>Sub </FONT>Update()

<FONT color=blue>Range</FONT>("A1").Value = Now

<FONT color=blue>Call</FONT> StartTimer

<FONT color=blue>End Sub</FONT>



<FONT color=blue>Sub </FONT>StopTimer()

<FONT color=blue>On Error</FONT> <FONT color=blue>Resume </FONT><FONT color=blue>Next</FONT>

Application.OnTime T, Procedure:="Update", Schedule:=False

<FONT color=blue>End Sub</FONT>
</PRE>
 
Upvote 0

Forum statistics

Threads
1,214,590
Messages
6,120,423
Members
448,961
Latest member
nzskater

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top