ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   Data Entry date/time? (https://www.excelbanter.com/excel-discussion-misc-queries/124261-data-entry-date-time.html)

FARAZ QURESHI

Data Entry date/time?
 
Working upon a project requiring a column to be recording date/time when an
entry is made in the row. Sort of Now() function with dates being converted
to text right upon latest entry.

Lets say I enter an entry in A5, C5 shows Jan 01, 07 (Current Date);
Next day when I enter an entry in A6 & A7, C6 & C7 reflects Jan 02, 07;

RagDyeR

Data Entry date/time?
 
This link of John McGimpsey should help:

http://www.mcgimpsey.com/excel/timestamp.html


--
HTH,

RD

---------------------------------------------------------------------------
Please keep all correspondence within the NewsGroup, so all may benefit !
---------------------------------------------------------------------------
"FARAZ QURESHI" wrote in message
...
Working upon a project requiring a column to be recording date/time when

an
entry is made in the row. Sort of Now() function with dates being

converted
to text right upon latest entry.

Lets say I enter an entry in A5, C5 shows Jan 01, 07 (Current Date);
Next day when I enter an entry in A6 & A7, C6 & C7 reflects Jan 02, 07;



Gord Dibben

Data Entry date/time?
 
Faraz

Private Sub Worksheet_Change(ByVal Target As Excel.Range)
'when entering data in a cell in Col A
On Error GoTo enditall
Application.EnableEvents = False
If Target.Cells.Column = 1 Then
n = Target.Row
If Target.Value & n < "" Then
Target.Offset(0, 2).Value = Format(Now, "dd-mm-yyyy hh:mm")
End If
End If
enditall:
Application.EnableEvents = True
End Sub


This is sheet event code. Right-click on the sheet tab and "View Code".

Copy/paste into that sheet module.

Column C cell will get a static date/time entered when Column A cell is changed.


Gord Dibben MS Excel MVP


On Mon, 1 Jan 2007 13:20:00 -0800, FARAZ QURESHI
wrote:

Working upon a project requiring a column to be recording date/time when an
entry is made in the row. Sort of Now() function with dates being converted
to text right upon latest entry.

Lets say I enter an entry in A5, C5 shows Jan 01, 07 (Current Date);
Next day when I enter an entry in A6 & A7, C6 & C7 reflects Jan 02, 07;



FARAZ QURESHI

Data Entry date/time?
 
WOW! GORD U R GREAT!!!!!!!!!!!!!!!!!!!
THANX PAL.

"Gord Dibben" wrote:

Faraz

Private Sub Worksheet_Change(ByVal Target As Excel.Range)
'when entering data in a cell in Col A
On Error GoTo enditall
Application.EnableEvents = False
If Target.Cells.Column = 1 Then
n = Target.Row
If Target.Value & n < "" Then
Target.Offset(0, 2).Value = Format(Now, "dd-mm-yyyy hh:mm")
End If
End If
enditall:
Application.EnableEvents = True
End Sub


This is sheet event code. Right-click on the sheet tab and "View Code".

Copy/paste into that sheet module.

Column C cell will get a static date/time entered when Column A cell is changed.


Gord Dibben MS Excel MVP


On Mon, 1 Jan 2007 13:20:00 -0800, FARAZ QURESHI
wrote:

Working upon a project requiring a column to be recording date/time when an
entry is made in the row. Sort of Now() function with dates being converted
to text right upon latest entry.

Lets say I enter an entry in A5, C5 shows Jan 01, 07 (Current Date);
Next day when I enter an entry in A6 & A7, C6 & C7 reflects Jan 02, 07;





All times are GMT +1. The time now is 08:59 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
ExcelBanter.com