Forum Discussion
mmarion
Dec 28, 2020Copper Contributor
Auto update of time function
I am preparing a project log using excel and the now function. My problem is auto-updating of the worksheet results in time difference =0? How to do it? I usually want auto-update. I am not sure how ...
- Dec 28, 2020Don't actually hit the "+" key. The "+" key just means to hit/hold the other keys at the same time.
Hold down the Ctrl and Shift keys, then hit the ":" key.
JMB17
Dec 28, 2020Bronze Contributor
I suspect the formula should be E2-D2 and not E2-D3?
Also, I just noticed that shortcut does not appear to include the seconds. If that is an issue, then you may consider creating a button and attaching a macro to add the time to the current cell.
Sub GetTime()
activecell.Value = time
End Sub
Also, I just noticed that shortcut does not appear to include the seconds. If that is an issue, then you may consider creating a button and attaching a macro to add the time to the current cell.
Sub GetTime()
activecell.Value = time
End Sub