開発タブの「Visual Basic」をクリックしてVisual Basicを開いて、上記操作を行うシートに以下のコードをペーストすればOKだと思います。
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Column >= 2 And Target.Column <= 7 And Target.Row >= 3 Then
r = Target.Row
c = Target.Column + 6
Cells(r, c).Value = Date
End If
End Sub
ご参考まで。
お礼
ご丁寧にありがとうございました。