snasui.com ยินดีต้อนรับ ยินดีต้อนรับสู่กระดานถามตอบ Excel and VBA และอื่น ๆ ที่เป็นมิตรกับทุกท่าน มีไฟล์แนบมหาศาล ช่วยให้ท่านค้นหาและติดตามศึกษาได้โดยง่าย สมาชิกท่านใดที่ยังไม่ได้ระบุ Version ของ Excel ที่ใช้งานจริง สามารถทำตาม Link นี้เพื่อจะได้รับคำตอบที่ตรงกับ Version ของท่านครับ ระบุ Version ของ Excel
Private Sub Worksheet_Change(ByVal Target As Range)
Dim KeyCells As Range
On Error Resume Next
Set KeyCells = Range("A1:A5") & ("A8:A10")
If Not Application.Intersect(KeyCells, Range(Target.Address)) _
Is Nothing Then
If TypeName(Range("A1").Value) = "Double" Then
Range("D1").Value = Format(Time, "hh:mm:ss")
End If
' ส่วนนี้ปิดไว้ตอนเปิด เหมือนทำงานเป็น loop จน excel ค้างเริ่มใหม่
' If TypeName(Range("A2").Value) = "Double" Then
' Range("D2").Value = Format(Time, "hh:mm:ss")
' End If
End If
End Sub