Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
dan dan is offline
external usenet poster
 
Posts: 866
Default change cell event using circular reference

Hi,
How can I have a timestamp in cell B2 every time cell A2 change value.
Many thanks.
Dan
  #2   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 11,501
Default change cell event using circular reference

Hi,

Right click your sheet tab, view code and paste this in

Private Sub Worksheet_Change(ByVal Target As Range)

If Target.Cells.Count 1 Or IsEmpty(Target) Then Exit Sub

If Not Intersect(Target, Range("A2")) Is Nothing Then

Target.Offset(, 1).Value = Time

End If

End Sub

"Dan" wrote:

Hi,
How can I have a timestamp in cell B2 every time cell A2 change value.
Many thanks.
Dan

  #3   Report Post  
Posted to microsoft.public.excel.worksheet.functions
external usenet poster
 
Posts: 62
Default change cell event using circular reference

On Jun 17, 1:12*pm, Dan wrote:
Hi,
How can I have a timestamp in cell B2 every time cell A2 change value.
Many thanks.
Dan


Dan, u can get some help at http://www.mvps.org/dmcritchie/excel/event.htm#autodate
  #4   Report Post  
Posted to microsoft.public.excel.worksheet.functions
dan dan is offline
external usenet poster
 
Posts: 866
Default change cell event using circular reference

Thank you all, but I am looking for a formula not vba - this is why I have
put in my subject "circular reference" and also poseted it in the "Excel
Worksheet Functions" and not "Excel programming"

"Nayab" wrote:

On Jun 17, 1:12 pm, Dan wrote:
Hi,
How can I have a timestamp in cell B2 every time cell A2 change value.
Many thanks.
Dan


Dan, u can get some help at http://www.mvps.org/dmcritchie/excel/event.htm#autodate

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
Change Event on a Specific Cell Sashi Excel Worksheet Functions 3 July 20th 07 11:12 PM
Inserting current date when number entered in cell & Circular reference error? Pheasant Plucker® Excel Discussion (Misc queries) 4 April 10th 07 10:39 AM
cell change event gvm Excel Worksheet Functions 3 September 20th 05 04:50 AM
cell value change event alinasir Excel Worksheet Functions 1 August 30th 05 10:57 AM
circular error w/o cell reference Remote Todd Excel Discussion (Misc queries) 1 August 11th 05 12:49 PM


All times are GMT +1. The time now is 07:17 AM.

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"