ไม่สามารถแก้ไขข้อมูลที่ค้นหาได้
Posted: Fri Oct 14, 2022 4:11 pm
ที่ Userform1 เมื่อเลือกข้อมูลที่จะแก้ไขใน listbox หลังจากดำเนินการแก้ไขแล้ว code ที่ปุ่ม แก้ไขข้อมูล ไม่ทำงาน
รบกวนขอคำแนะนำด้วยครับ
ขอบคุณครับ
Code: Select all
Private Sub CommandButton3_Click()
Dim irow As Long, i As String
i = Worksheets("DataStudent").Range("Z1").Value
If Application.CountIf(Worksheets("DataStudent").Range("J:J"), TextBox1.Value) > 0 Then
irow = Application.Match((TextBox1.Value), Worksheets("DataStudent").Range("J:J"), 0)
Else
End If
Worksheets("DataStudent").Range("A" & i).Value = Frame1.ComboBox1.Value 'ระดับ
Worksheets("DataStudent").Range("B" & i).Value = Frame1.ComboBox2.Value 'ชั้น
Worksheets("DataStudent").Range("C" & i).Value = Frame1.ComboBox3.Value 'ห้อง
Worksheets("DataStudent").Range("D" & i).Value = Frame1.TextBox1.Value 'ปีการศึกษา
Worksheets("DataStudent").Range("E" & i).Value = Frame1.ComboBox4.Value 'ภาคเรียน
Worksheets("DataStudent").Range("I" & i).Value = Frame1.ComboBox5.Value 'สถานะนักเรียน
Worksheets("DataStudent").Range("K" & i).Value = Frame1.ComboBox6.Value 'คำนำหน้า
Worksheets("DataStudent").Range("L" & i).Value = Frame1.TextBox3.Value 'ชื่อ
Worksheets("DataStudent").Range("M" & i).Value = Frame1.TextBox4.Value 'นามสกุล
Worksheets("DataStudent").Range("N" & i).Value = Frame1.TextBox5.Value 'เลขประชาชน
'Call refresh_data
End Sub
รบกวนขอคำแนะนำด้วยครับ
ขอบคุณครับ