Home |
Search |
Today's Posts |
#4
![]()
Posted to microsoft.public.excel.worksheet.functions
|
|||
|
|||
![]()
Use this macro
Private Sub Worksheet_Change(ByVal Target As Excel.Range) With Target If .Count 1 Then Exit Sub If Not Intersect(Range("A2:A10"), .Cells) Is Nothing Then Application.EnableEvents = False If IsEmpty(.Value) Then .Offset(0, 1).ClearContents Else With .Offset(0, 1) .NumberFormat = "dd mmm yyyy hh:mm:ss" .Value = Now End With End If Application.EnableEvents = True End If End With End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Static date formula | Excel Discussion (Misc queries) | |||
How to convert a static formula to dynamic formula ? | Excel Worksheet Functions | |||
Static Timestamp without using Macros | Excel Worksheet Functions | |||
Excel formula timestamp for a data entry of a referenced cell | Excel Worksheet Functions | |||
static time in formula | Excel Worksheet Functions |