Automatic time entry question

E. Jones

Board Regular
Joined
Oct 21, 2012
Messages
59
Hello all,

What I need is a way for a cell to automatically insert the actual time information was entered into another cell, without erasing a previous time already calculated. In the example below, information was entered in B2 at 1:30 PM, so the time showed in A2. At 1:40 PM, information was entered in C3, so 1:40 PM populated in A3. At this point, nothing has been entered in any other cells, therefore, no time shows in any more cells in column A. But, once I do put something in either column B or C, I need the current time to populate in Column A without disturbing the times that are already entered in A2, A3, etc.

If this is possible, that you very much in advance.

ABC
1TimeInfo 1Info 2
21:30 PMnew information written here
31:40 PMnew information written here
4
5

<tbody>
</tbody>
 

Excel Facts

What does custom number format of ;;; mean?
Three semi-colons will hide the value in the cell. Although most people use white font instead.
try in cell A1 =IF((OR(B1<>"", C1<>"")),NOW(),"") and drag the formula down to all the A columns you want, make sure you have time format for Column A other wise it will appear as decimal
 
Upvote 0
Hajiali,

This formula works well except for the most critical aspect. I need any previous times that are recorded to stay saying the same thing, but when I input new information, ALL of the times change to the time of the last entry. How do I go about fixing this?

Thanks again in advance
 
Upvote 0
Hello all,

If anyone is still wondering about this problem, I have the solution now:

=IF((OR(B2<>"",C2<>"")), IF(A2="",NOW(),A2),"")

You will get an error message at first, but the fix is easy. Go into your options menu and select formulas, then ensure that the "enable iterative calculation" box is selected, and you will be good to go! Hope this helps someone.
 
Upvote 0

Forum statistics

Threads
1,214,515
Messages
6,119,972
Members
448,933
Latest member
Bluedbw

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