Hello all,

I'm stretching my abilities slightly here so please forgive me if I'm asking a stupid question.

I'm looking to input a time/ date stamp on a spreadsheet when anybody modifies a cell. I have found a code that works almost perfectly.

Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Cells.Count > 1 Or IsEmpty(Target) Then Exit Sub
If Not Intersect(Target, Range("A:H")) Is Nothing Then
Application.EnableEvents = False
Target.Offset(, 1) = Format(Now, "dd/mm/yyyy hh:mm")
Application.EnableEvents = True
End If
End Sub

This is where I ask the stupid question, how do I get the date/ time stamp to appear in column I only as opposed to offset 1 cell over from where the change has been made.
I've had a look around and tried some other solutions, all of which appear to offset the timestamp rather than populating a predefined column.

Any help/ suggestions would be appreciated. Thanks in advance for your help.