![]() |
after entering a text in one cell, next cell should disp the entd
how to do ? after entering a text in one cell, next cell should disp the entd
time |
after entering a text in one cell, next cell should disp the entd
You can use the change event. The following macro, for example, will look
for changes to any cell in column A and record the date/time in column B: Private Sub Worksheet_Change(ByVal Target As Range) If Intersect(Range("A:A"), Target) Is Nothing Then Exit Sub End If Target.Offset(0, 1).Value = Now End Sub -- Gary''s Student - gsnu200737 "Sridhar" wrote: how to do ? after entering a text in one cell, next cell should disp the entd time |
All times are GMT +1. The time now is 04:13 PM. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com