Home |
Search |
Today's Posts |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Another way.............
Private Sub Worksheet_Change(ByVal Target As Range) 'Macro inserts date in Column B for change in Column A ActiveCell.Select If ActiveCell.Column = 1 Then 'Limits macro action to column A If Not Selection Is Nothing Then Application.Selection.Offset(0, 1).Value = Now End If Else End If End Sub Vaya con Dios, Chuck, CABGx3 "Twoflower" wrote: Is it possible to get a date in a cell when another specific cell is "filled, written, populated (not empty)"? If yes, how? |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Adding time to date-time formatted cell | Excel Discussion (Misc queries) | |||
Combined date time cell to separate date & time components | Excel Discussion (Misc queries) | |||
Combined date time cell to separate date & time components | Excel Discussion (Misc queries) | |||
Combined date time cell to separate date & time components | Excel Discussion (Misc queries) | |||
Combined date time cell to separate date & time components | Excel Worksheet Functions |