snasui.com ยินดีต้อนรับ ยินดีต้อนรับสู่กระดานถามตอบ Excel and VBA และอื่น ๆ ที่เป็นมิตรกับทุกท่าน มีไฟล์แนบมหาศาล ช่วยให้ท่านค้นหาและติดตามศึกษาได้โดยง่าย สมาชิกท่านใดที่ยังไม่ได้ระบุ Version ของ Excel ที่ใช้งานจริง สามารถทำตาม Link นี้เพื่อจะได้รับคำตอบที่ตรงกับ Version ของท่านครับ ระบุ Version ของ Excel
ขอสอบถามเกี่ยวกับการใส่ข้อมูลใน Combo Box ค่ะ ต้องการให้ Drop down ขยายช่องให้พอดีกับข้อมูลค่ะ และ ให้สามารถพิมพ์แค่ชื่อ Drop down แสดงข้อมูลตามที่พิมพ์ ไม่ทราบว่าต้องแก้โค้ดยังไงบ้างค่ะ หรือมีคำแนะนำยังให้ให้ได้ตามความต้องการ ช่วยแนะนำด้วยนะคะ
เปิดใช้ Form ที่ไฟล์ Form-Copy จะไปดึงข้อมูลมาจาก ไฟล์ Employee Data ค่ะ
You do not have the required permissions to view the files attached to this post.
Private Sub Userform_Activate()
On Error Resume Next
Dim tambon1 As String
With Sheets("Address")
listtambon1.ColumnCount = 4
tambon1 = .Range("c3", .Range("c" & .Rows.Count).End(xlUp)).Address
listtambon1.RowSource = "Address!" & tambon1
End With
End Sub
Private Sub Userform_Activate()
On Error Resume Next
Dim tambon1 As String
With Sheets("Address")
listtambon1.ColumnCount = 4
tambon1 = .Range("c3", .Range("c" & .Rows.Count).End(xlUp)).Address
listtambon1.RowSource = "Address!" & tambon1
End With
End Sub