Hi, I am using the function "=now()" to get the date and time. I have also
set the tool > option > calculation to automatic. However, the time is not
changing second by second.
I wonder what setting I need to changed accordingly to activate this real
time function.
Thank you very much
Hi Terry,
I was faced with a similiar problem and made some insights into today
() vs. now() to built a static time stamp, i.e. a time stamp that do
not change after inserted (
http://groups.google.com/group/
microsoft.public.excel.worksheet.functions/browse_thread/thread/
d61ee95cf479ab70/ffa7470455227caa?hl=en&q=michael+tarnowski+now()
#ffa7470455227caa)
To built a time stamp use this:
Say your target cell is A1 and to want a static time stamp in B1, put
this formula in B1:
=IF(A1="";"";IF(B1="";NOW();B1))
Then go to Tools|options|calculation and check the iterations
checkbox. When A1 is populated B1 will display a static date+time.
More info:
*
http://www.mcgimpsey.com/excel/timestamp.html
*
http://chandoo.org/wp/2009/01/08/timestamps-excel-formula-help/
This is not quite what you are looking for, but maybe you can get some
insights.
HTH,
Cheers Michael
Time stamps, Static
Say your target cell is A1 and to want a static time stamp in B1, put
this formula in B1:
{{{
=IF(A1="";"";IF(B1="";NOW();B1))
}}}
Then Tools|options|calculation and check the iterations checkbox. When
A1 is populated B1 will display a static date.
*
http://www.mcgimpsey.com/excel/timestamp.html
*
http://chandoo.org/wp/2009/01/08/timestamps-excel-formula-help/