Running Clock

R

Ralph

This is what i need to do. i need a running clock that shows days, hours and
min from 12-27-2007. im very new to this, so if you can help, please spell
it out very well
 
G

Gary''s Student

In cell A1 enter:
=NOW()-DATE(2007,12,27)
In cell A2 enter:
=INT(A1) & " " & TEXT(MOD(A1,1),"hh:mm")

This will refresh every time the worksheet is calculated
 
Top