Autofill date if a change happens on the row

Raky

New Member
Joined
Nov 14, 2022
Messages
1
Office Version
  1. 2021
Platform
  1. Windows
Hello,

I am new to excel and I used a code I found on this forum to autofill the date of day depending if any change happened on the row (I was not able to find again the thread).

I used this VBA code :

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count > 1 Then Exit Sub
If Target.Row < 3 Then Exit Sub
If Target.Column < 3 Then Exit Sub
Cells(Target.Row, "B") = Date
End Sub


This works perfecly for what I intend to do but when I use it, it is not possible anymore to do ctrl+Z. That is a problem for me so I would like to find a solution but I am not sure that there is any (I use excel 2021). Is it possible to have the result and keep the "going back" fonctionnality ?
 

Excel Facts

Return population for a City
If you have a list of cities in A2:A100, use Data, Geography. Then =A2.Population and copy down.
Hello,

I am new to excel and I used a code I found on this forum to autofill the date of day depending if any change happened on the row (I was not able to find again the thread).

I used this VBA code :

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count > 1 Then Exit Sub
If Target.Row < 3 Then Exit Sub
If Target.Column < 3 Then Exit Sub
Cells(Target.Row, "B") = Date
End Sub


This works perfecly for what I intend to do but when I use it, it is not possible anymore to do ctrl+Z. That is a problem for me so I would like to find a solution but I am not sure that there is any (I use excel 2021). Is it possible to have the result and keep the "going back" fonctionnality ?
Hello,

I am new to excel and I used a code I found on this forum to autofill the date of day depending if any change happened on the row (I was not able to find again the thread).

I used this VBA code :

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count > 1 Then Exit Sub
If Target.Row < 3 Then Exit Sub
If Target.Column < 3 Then Exit Sub
Cells(Target.Row, "B") = Date
End Sub


This works perfecly for what I intend to do but when I use it, it is not possible anymore to do ctrl+Z. That is a problem for me so I would like to find a solution but I am not sure that there is any (I use excel 2021). Is it possible to have the result and keep the "going back" fonctionnality ?
Using Ctrl+Z will not undo what a script does.
 
Upvote 0

Forum statistics

Threads
1,214,646
Messages
6,120,720
Members
448,986
Latest member
andreguerra

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