snasui.com ยินดีต้อนรับ ยินดีต้อนรับสู่กระดานถามตอบ Excel and VBA และอื่น ๆ ที่เป็นมิตรกับทุกท่าน มีไฟล์แนบมหาศาล ช่วยให้ท่านค้นหาและติดตามศึกษาได้โดยง่าย สมาชิกท่านใดที่ยังไม่ได้ระบุ Version ของ Excel ที่ใช้งานจริง สามารถทำตาม Link นี้เพื่อจะได้รับคำตอบที่ตรงกับ Version ของท่านครับ ระบุ Version ของ Excel
Private Sub TextBox1_KeyDown(ByVal KeyCode As MSForms.ReturnInteger, ByVal Shift As Integer)
If KeyCode = 13 Then 'กดคีย์ enter
TextBox2.Value = Application.WorksheetFunction.Index(Sheets("sheet1").Range("A:B"), Application.WorksheetFunction.Match(TextBox1.Value * 1, Sheets("sheet1").Range("A:A"), 0), 2)
End If
TextBox1.SetFocus
End Sub
You do not have the required permissions to view the files attached to this post.
Private Sub TextBox1_BeforeUpdate(ByVal Cancel As MSForms.ReturnBoolean)
On Error Resume Next
TextBox2.Value = Application.WorksheetFunction.Index(Sheets("sheet1").Range("A:B"), Application.WorksheetFunction.Match(TextBox1.Value * 1, Sheets("sheet1").Range("A:A"), 0), 2)
If Err <> 0 Then
TextBox2.Text = ""
End If
End Sub
Private Sub TextBox2_AfterUpdate()
With TextBox1
.SelStart = 0
.SelLength = Len(.Text)
.SetFocus
End With
End Sub