I need a simple formula in gsheets that will timestamp column b if column a is filled out

Healingotaku

New Member
Joined
Nov 18, 2020
Messages
8
Office Version
  1. 365
Platform
  1. Windows
  2. Mobile
I need a simple formula in gsheets that will timestamp column b
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
Hi, healingotaku,
Excel Formula:
Now()
can be used for datetimestamp in a cell.

I would suggest providing a little bit of information as to what is actually required, to provide a better understanding of the question.
 
Upvote 0
Hi, healingotaku,
Excel Formula:
Now()
can be used for datetimestamp in a cell.

I would suggest providing a little bit of information as to what is actually required, to provide a better understanding of the question.
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.
 
Upvote 0
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.
 
Upvote 0
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.
So I would I make this formula work for all of column A and B? Sorry for my ignorance
 
Upvote 0
use drag handle to drag the formula down till last used row
 
Upvote 0
So I highlight all of column b and then put the formula in
Lets assume your data starts from A1, paste the formula in B1, and then use the drag handle,
1605855809696.png
to drag the formula all the way till the end of column B, right next to where your data ends in column A.

Hope this helps...
 
Upvote 0
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.
... 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?
 
Upvote 0
... 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?
thats an excellent question @Peter_SSs, i didnt think of that...
i guess thats why you are an MVP and i m not...?

as for ur question, please correct me if i am wrong, VBA is the way to go???
 
Upvote 0

Forum statistics

Threads
1,215,284
Messages
6,124,059
Members
449,139
Latest member
sramesh1024

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top