Healingotaku
New Member
- Joined
- Nov 18, 2020
- Messages
- 8
- Office Version
- 365
- Platform
- Windows
- Mobile
I need a simple formula in gsheets that will timestamp column b
Now()
I am creating a sign in and out sheet for my clients. I am using a drop-down box in column A. When they select their name I want column B to make a timestamp(of current date and time) of course it would be for each individual cell in column A and B. About 1000 cells in total.Hi, healingotaku,
can be used for datetimestamp in a cell.Excel Formula:Now()
I would suggest providing a little bit of information as to what is actually required, to provide a better understanding of the question.
if(A1<>"",Now(),"")
So I would I make this formula work for all of column A and B? Sorry for my ignorancePlace below formula in cell adjacent to the cell you have data validation in
Excel Formula:if(A1<>"",Now(),"")
This will change cell B1 value to current datetime once the cell A1 changes to anything apart from blank, and if A1 is blank cell B1 will stay blank.
So I highlight all of column b and then put the formula inuse drag handle to drag the formula down till last used row
Lets assume your data starts from A1, paste the formula in B1, and then use the drag handle,So I highlight all of column b and then put the formula in
... but tomorrow when you open the worksheet, do you think this will will still show yesterday's date and time when the cell was changed?Place below formula in cell adjacent to the cell you have data validation in
Excel Formula:if(A1<>"",Now(),"")
This will change cell B1 value to current datetime once the cell A1 changes to anything apart from blank, and if A1 is blank cell B1 will stay blank.
thats an excellent question @Peter_SSs, i didnt think of that...... but tomorrow when you open the worksheet, do you think this will will still show yesterday's date and time when the cell was changed?