Worksheet Change Event - Print the cell value before and after.

Ebraham

Board Regular
Joined
Mar 21, 2015
Messages
215
hi all,

I have my below code which gives me the value after a particular cell value is change. I want to see what was the cell value before and what the value is after it is changed.


Code:
[TABLE="width: 64"]
 <colgroup><col width="64" style="width:48pt"> </colgroup><tbody>[TR]
  [TD="width: 64"]Private Sub  Worksheet_SelectionChange(ByVal Target As Range)[/TD]
 [/TR]
 [TR]
  [TD][/TD]
 [/TR]
 [TR]
  [TD]Dim fso As Scripting.FileSystemObject[/TD]
 [/TR]
 [TR]
  [TD]Dim changelog As Scripting.TextStream[/TD]
 [/TR]
 [TR]
  [TD]Dim r As Range[/TD]
 [/TR]
 [TR]
  [TD][/TD]
 [/TR]
 [TR]
  [TD][/TD]
 [/TR]
 [TR]
  [TD]Set fso = New Scripting.FileSystemObject[/TD]
 [/TR]
 [TR]
  [TD][/TD]
 [/TR]
 [TR]
  [TD]Path = Environ("UserProfile")[/TD]
 [/TR]
 [TR]
  [TD][/TD]
 [/TR]
 [TR]
  [TD]Set changelog =  fso.OpenTextFile(Filename:=Environ("UserProfile") &  "\Desktop\Practice\Temp\Changes.txt", IOMode:=ForAppending,  Create:=True)[/TD]
 [/TR]
 [TR]
  [TD][/TD]
 [/TR]
 [TR]
  [TD]If Target.Cells.CountLarge > 1000 Then[/TD]
 [/TR]
 [TR]
  [TD]     changelog.Write Now & vbTab[/TD]
 [/TR]
 [TR]
  [TD]     changelog.Write Environ("Username") & vbTab[/TD]
 [/TR]
 [TR]
  [TD]     changelog.Write Target.Address & vbTab[/TD]
 [/TR]
 [TR]
  [TD]     changelog.Write "Multiple values changed" & vbNewLine[/TD]
 [/TR]
 [TR]
  [TD]Else[/TD]
 [/TR]
 [TR]
  [TD]     For Each r In Target[/TD]
 [/TR]
 [TR]
  [TD]    [/TD]
 [/TR]
 [TR]
  [TD]     changelog.Write Now & vbTab[/TD]
 [/TR]
 [TR]
  [TD]     changelog.Write Environ("UserName") & vbTab[/TD]
 [/TR]
 [TR]
  [TD]     changelog.Write r.Value & vbNewLine[/TD]
 [/TR]
 [TR]
  [TD]    [/TD]
 [/TR]
 [TR]
  [TD]     Next r[/TD]
 [/TR]
 [TR]
  [TD]End If[/TD]
 [/TR]
 [TR]
  [TD]    [/TD]
 [/TR]
 [TR]
  [TD]changelog.Close[/TD]
 [/TR]
 [TR]
  [TD][/TD]
 [/TR]
 [TR]
  [TD]End Sub[/TD]
[/TR]
</tbody>[/TABLE]
 

Excel Facts

Which came first: VisiCalc or Lotus 1-2-3?
Dan Bricklin and Bob Frankston debuted VisiCalc in 1979 as a Visible Calculator. Lotus 1-2-3 debuted in the early 1980's, from Mitch Kapor.
Hi All,

I am trying to record the changes in the worksheet. Cells values changed from and cell value change to. I am not able to get value changed to properly. Kindly help advise ? is that possible.

Code:
Private Sub Worksheet_SelectionChange(ByVal Target As Range)


Dim fso As Scripting.FileSystemObject
Set fso = New Scripting.FileSystemObject
Dim ts As Scripting.TextStream
Dim r As Range


Set ts = fso.OpenTextFile(Environ("UserProfile") & Application.PathSeparator & "Desktop" & Application.PathSeparator & "ChangeLog.txt", ForAppending, True)


For Each r In Target
    ts.Write Now() & vbTab
    ts.Write Environ("Username") & vbTab
    ts.Write Target.Address & vbTab
    ts.Write "Value change From : " & r.Value & vbTab & "Value change to : " & Range(Target.Address).Value & vbNewLine
Next r




End Sub
 
Upvote 0

Forum statistics

Threads
1,216,098
Messages
6,128,812
Members
449,468
Latest member
AGreen17

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top