ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Discussion (Misc queries) (https://www.excelbanter.com/excel-discussion-misc-queries/)
-   -   after entering a text in one cell, next cell should disp the entd (https://www.excelbanter.com/excel-discussion-misc-queries/154536-after-entering-text-one-cell-next-cell-should-disp-entd.html)

sridhar

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

Gary''s Student

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