Private Sub Worksheet_Change(ByVal Target As Range)
If Not (Application.Intersect(Range("H6"), Target) Is Nothing) Then
Application.EnableEvents = False
Application.Undo
Application.EnableEvents = True
MsgBox "Undo このセルは変更できません。!!"
ActiveCell.Offset(0, 1).Select
End If
End Sub