Add Date And Time in a cell.

  • Thread starter Thread starter Raymond
  • Start date Start date
R

Raymond

I want to add the time and date for a cell, but I want these date and time
to be automatically updated itself with each passing day, and second. So
when I log on this excel sheet later, the cell will show a different date
and time in which I am currently in. How do I accomplish this? Is this
possible at all?
 
use the Now() function - this is volatile and will be updated after each
sheet calculation takes place.

put the following in the cell required - it formats to date and time (which
you can change using cell format)

=NOW()

Cheers
Nigel
 
Be aware that this will update if the sheet recalculates some time after you
login to the sheet. This may be what you want, but it will not be showing
your start time for that day.
 
Hi Raymond,

To throw my 2 cents in the ring here.....depending on
whether or not you want the "Log On" time to remain
static, you might consider copying the cell and paste
special/value back onto the same cell.....that'll nail
down the time you logged on. But that'll lose you the Now
() formula on that sheet......so....use two cells...copy
the Now() cell and paste special/value into the second
cell. You could create a macro that did this
automatically for you if you're into VBA.

WOW......that was almost a quarters worth....:)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top