Forum Discussion
Colorado5280
May 30, 2022Copper Contributor
Formula to show the date and time I start a project each day and the time I stop working on the proj
I need a formula that will show a static date and time I start a project, and another formula for a different cell that will show the time I stop working on the project, and another formula to show t...
- May 30, 2022
Use keyboard shortcuts to enter the current date Ctrl ; (control plus semi-colon) and current time Ctrl Shift : (control plus shift plus colon). Do NOT use the NOW() function as it will continuously update itself.
To calculate duration, enter a formula like: =B1-A1, where B1 would contain the ending time and A1 the starting time.
Riny_van_Eekelen
May 30, 2022Platinum Contributor
Use keyboard shortcuts to enter the current date Ctrl ; (control plus semi-colon) and current time Ctrl Shift : (control plus shift plus colon). Do NOT use the NOW() function as it will continuously update itself.
To calculate duration, enter a formula like: =B1-A1, where B1 would contain the ending time and A1 the starting time.
Colorado5280
Jun 04, 2022Copper Contributor
Thank You!