Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 4
Default 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
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 11,058
Default 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

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do you do hard returns in 1 cell? entering address in 1 cell Jenn Excel Discussion (Misc queries) 2 June 18th 07 03:28 PM
Entering a number in any cell eg. 1 it changes to 0.01 why Daleen Excel Discussion (Misc queries) 3 November 14th 06 08:10 AM
text in a cell upon entering the cell Barb S Excel Discussion (Misc queries) 3 August 10th 06 04:42 PM
What is the Chr() code for Alt+Enter in a cell when entering text? Dennis Excel Discussion (Misc queries) 2 July 20th 06 11:49 PM
how to rec/disp. file name in a w/s cell with a funtion (Auto) Mohan De Silva Excel Discussion (Misc queries) 1 December 21st 05 12:57 AM


All times are GMT +1. The time now is 01:27 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"