Adding Time Cell Was Changed

  • Thread starter Thread starter Andy Rads
  • Start date Start date
A

Andy Rads

Column A has different values (these are not important). In column B I want
to show the time that say cell A1 was changed. I have tried several methods
but all result in all the times in column B being changed to the same time.
Can anyone help?

Many thanks.
 
hi, Andy !
... In column B I want to show the time that say cell A1 was changed.
I have tried several methods but all result in all the times in column B being changed to the same time...

here is another approach, defining/using a [tricky] UDF as follows:

Function Change_Time(myCell As Range) As Date
Volatile = False
Change_Time = Now
End Function

you could use the above UDF [i.e.] in 'B1'...
=if(a1<>"",change_time(a1))

you might need to format 'B1' like: h:mm:ss.0000

hth,
hector.
 

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