ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Clock? (https://www.excelbanter.com/excel-programming/294338-clock.html)

scottnshelly[_2_]

Clock?
 
How can i put a clock on a spreadsheet? i know the formula that wil
put the current time, but i want a clock that will keep time. is thi
possible

--
Message posted from http://www.ExcelForum.com


Ron de Bruin

Clock?
 
I believe Chip Pearson have a example on his site
http://www.cpearson.com/excel/download.htm

Look for Clock

--
Regards Ron de Bruin
http://www.rondebruin.nl


"scottnshelly " wrote in message ...
How can i put a clock on a spreadsheet? i know the formula that will
put the current time, but i want a clock that will keep time. is this
possible?


---
Message posted from http://www.ExcelForum.com/




Frank Kabel

Clock?
 
Hi
have a look at
http://www.mvps.org/dmcritchie/excel/datetime.htm
scroll down this page to find some stop clocks

--
Regards
Frank Kabel
Frankfurt, Germany

"scottnshelly " schrieb
im Newsbeitrag ...
How can i put a clock on a spreadsheet? i know the formula that will
put the current time, but i want a clock that will keep time. is

this
possible?


---
Message posted from http://www.ExcelForum.com/



scottnshelly[_3_]

Clock?
 
thanks. unfortunatley this is for work and i can't download anything o
the work computers. no big deal. just wanted to spruce up a workboo
or two.
thanks for the help guys

--
Message posted from http://www.ExcelForum.com


Steve Garman

Clock?
 
I don't really recommend it, especially as most PCs already have plenty
of clocks but you could try something like this:

Private Sub Worksheet_Activate()
Set clockCell = Range("a1")
showTime
End Sub

Private Sub Worksheet_Deactivate()
On Error Resume Next
Application.OnTime clockTim, "showTime", , False
End Sub

'
'Then in a module
'

Public clockTim As Variant
Public clockCell As Range
Public Sub showTime()
clockCell.Value = Format(Now, "'hh:mm:ss")
clockTim = Now + TimeValue("00:00:01")
Application.OnTime clockTim, "showTime"
End Sub


scottnshelly < wrote:
thanks. unfortunatley this is for work and i can't download anything on
the work computers. no big deal. just wanted to spruce up a workbook
or two.
thanks for the help guys.


---
Message posted from http://www.ExcelForum.com/



scottnshelly[_10_]

Clock?
 
Thanks, that a good one. You say you don't recommend it though? is i
dangerous, or will it slow anything down?
thanks again

--
Message posted from http://www.ExcelForum.com


Steve Garman

Clock?
 
Any unnecessary code will slow things down a bit.

I don't think this is particularly greedy code, but it's something else
that could potentially go wrong.

Mostly, though, I just don't recomend clocks in general unless there's a
specific reason for them. As a user, I find them irritating.

scottnshelly < wrote:

Thanks, that a good one. You say you don't recommend it though? is it
dangerous, or will it slow anything down?
thanks again.


---
Message posted from http://www.ExcelForum.com/




All times are GMT +1. The time now is 07:58 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com