PC Review


Reply
Thread Tools Rate Thread

after entering a text in one cell, next cell should disp the entd

 
 
=?Utf-8?B?U3JpZGhhcg==?=
Guest
Posts: n/a
 
      17th Aug 2007
how to do ? after entering a text in one cell, next cell should disp the entd
time
 
Reply With Quote
 
 
 
 
=?Utf-8?B?R2FyeScncyBTdHVkZW50?=
Guest
Posts: n/a
 
      17th Aug 2007
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 With Quote
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
text in a cell upon entering the cell =?Utf-8?B?QmFyYiBT?= Microsoft Excel Misc 3 10th Aug 2006 04:42 PM
add a formula to one cell by entering text in another cell. =?Utf-8?B?TWF0dA==?= Microsoft Excel Programming 1 1st Dec 2005 09:35 PM
Entering text in a cell. =?Utf-8?B?R2FybGluZw==?= Microsoft Excel Misc 2 11th May 2004 08:24 PM
Entering a changing Cell Value along with Static text into 1 cell Kevin M Microsoft Excel Misc 0 15th Mar 2004 05:23 PM
Re: Entering a changing Cell Value along with Static text into 1 cell Frank Kabel Microsoft Excel Misc 0 15th Mar 2004 05:20 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 02:38 AM.