Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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/ |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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/ |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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/ |
#6
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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 |
#7
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
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/ |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Incremental time values based upon clock in and clock out times | Excel Discussion (Misc queries) | |||
How do I calculate time in excel (clock in and clock out | Excel Discussion (Misc queries) | |||
Change EXCEL Clock to Standard Clock or Military Time | Excel Worksheet Functions | |||
Start Clock/Stop Clock | Excel Discussion (Misc queries) | |||
Clock | Excel Worksheet Functions |