Home |
Search |
Today's Posts |
#8
![]() |
|||
|
|||
![]()
Using .Formula instead of .Text shouldn't create any problems.
What happened when you tried it? <g Alan wrote: "Debra Dalgleish" wrote in message ... The following code will add a comment to the cell that was changed: '========================= Sub Worksheet_Change(ByVal Target As Excel.Range) Dim oldtext As String Dim newtext As String With Target On Error Resume Next oldtext = .Comment.Text If Err < 0 Then .AddComment End If On Error GoTo 0 newtext = oldtext & " Changed to " & .Text & _ " by " & Application.UserName & " at " & Now & vbLf With .Comment .Text newtext .Visible = True .Shape.TextFrame.AutoSize = True .Visible = True End With End With End Sub '============================ Another comment / question: Wouldn't it be more useful to use the FORMULA property of the range (cell), rather than the TEXT property on this line: newtext = oldtext & " Changed to " & .Formula & _ Is there any downside to using the FORMULA property that I am not foreseeing? Alan. -- Debra Dalgleish Excel FAQ, Tips & Book List http://www.contextures.com/tiptech.html |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Lost my Paste | Excel Discussion (Misc queries) | |||
Displaying value of specific cell within a range, with IF function...? | Excel Discussion (Misc queries) | |||
Amount or Numbers in Words | New Users to Excel | |||
I cant use englisch function names in a swedich version of excel | Excel Discussion (Misc queries) | |||
Counting Function Dilemma | Excel Worksheet Functions |