Thread: [Solved] Time formulas
View Single Post
 
Old 11-26-2016, 08:28 AM
jeffreybrown jeffreybrown is offline Windows Vista Office 2007
Expert
 
Join Date: Apr 2016
Posts: 673
jeffreybrown has a spectacular aura aboutjeffreybrown has a spectacular aura about
Default

It sounds as if when the user enters the logon in A2, you want H2 to capture the time the entry was made.

This can be done be formula, but it can't be made to be static unless you use VBA.

The formula in H2 copied down would be =IF(A2<>"",NOW(),"")

but you have to place a time format on the cell on you will just get numbers.

The NOW() function in the formula is Volatile means if you select anything on the spreadsheet the time will change...it's dynamic.

You can test this by selecting F9 and you'll see the time change.

So, bottom line, if you want to lock in the time when A2 is updated, you'll need VBA.

Do you want to go this route?
Reply With Quote