[Google Sheets] Show cell modification date
Cmoi2025
-
PapyLuc51 Posted messages 4566 Registration date Status Membre Last intervention -
PapyLuc51 Posted messages 4566 Registration date Status Membre Last intervention -
Hello
I need to display the modification date of hundreds of cells in a column in the right column next to each relevant cell.
Is there a function that shows the modification date (and time if possible) of the cell on the left?
Thank you in advance.
I need to display the modification date of hundreds of cells in a column in the right column next to each relevant cell.
Is there a function that shows the modification date (and time if possible) of the cell on the left?
Thank you in advance.
2 réponses
Hello,
In fact, regarding VBA, it's more about the JAVA language on Google Sheets.
While searching online, I found this VBA code that works very well on Excel; the date and time only change if you modify the cell to the left. Since I have no knowledge of English, I don’t understand what it means other than selecting the source column.
There’s certainly someone who can translate this into language for Sheets.
Best regards.
In fact, regarding VBA, it's more about the JAVA language on Google Sheets.
While searching online, I found this VBA code that works very well on Excel; the date and time only change if you modify the cell to the left. Since I have no knowledge of English, I don’t understand what it means other than selecting the source column.
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Application.Intersect(Target, Range("A:A")) Is Nothing Then
Target.Offset(0, 1) = Now
End If
End Sub
There’s certainly someone who can translate this into language for Sheets.
Best regards.