snasui.com ยินดีต้อนรับ ยินดีต้อนรับสู่กระดานถามตอบ Excel and VBA และอื่น ๆ ที่เป็นมิตรกับทุกท่าน มีไฟล์แนบมหาศาล ช่วยให้ท่านค้นหาและติดตามศึกษาได้โดยง่าย สมาชิกท่านใดที่ยังไม่ได้ระบุ Version ของ Excel ที่ใช้งานจริง สามารถทำตาม Link นี้เพื่อจะได้รับคำตอบที่ตรงกับ Version ของท่านครับ ระบุ Version ของ Excel
Private Sub Worksheet_Change(ByVal Target As Range)
If ActiveCell.Column = 1 Then Range("b" & Target.Row) = Now()
If ActiveCell.Column = 3 Then Range("f" & Target.Row) = Now()
End Sub
You do not have the required permissions to view the files attached to this post.
Private Sub Worksheet_Change(ByVal Target As Range)
Application.EnableEvents = False
If ActiveCell.Column = 1 Then Range("b" & Target.Row) = Now()
If ActiveCell.Column = 3 Then Range("f" & Target.Row) = Now()
Application.EnableEvents = True
End Sub