Page 1 of 1
รบกวนวิธี เลือกข้อมูลอย่างใดอย่างหนึ่ง เพิ่มลงไปในชีท ในcell เดียวกัน
Posted: Thu Dec 03, 2015 4:20 pm
by belmont
รบกวนหน่อยค่ะ
คืออยากให้ช่วย ถ้าเราเลือกข้อมูล อย่างใดอย่างหนึ่ง
Untitled2.jpg
เพิ่มลงไปในชีทงานค่าใช่จ่าย ในcellB3 เดียวกัน
Untitled.jpg
test.xlsm
Re: รบกวนวิธี เลือกข้อมูลอย่างใดอย่างหนึ่ง เพิ่มลงไปในชีท ในcell เดียวกัน
Posted: Thu Dec 03, 2015 4:33 pm
by belmont
รบกวนอีกเรื่องค่ะ คือจะเอา ข้อมูล ที่เลือก
Untitled3.jpg
ลงไปไว้ใน cellD3
Untitled4.jpg
Re: รบกวนวิธี เลือกข้อมูลอย่างใดอย่างหนึ่ง เพิ่มลงไปในชีท ในcell เดียวกัน
Posted: Thu Dec 03, 2015 4:35 pm
by bank9597
เขียนโค๊ดไว้หรือยังครับ ถ้าเขียนแล้วติดตรงไหน ให้เอามาถามครับ
Re: รบกวนวิธี เลือกข้อมูลอย่างใดอย่างหนึ่ง เพิ่มลงไปในชีท ในcell เดียวกัน
Posted: Fri Dec 04, 2015 12:23 am
by belmont
นี้ค่ะ ตัวอย่าง
test.xlsm
Re: รบกวนวิธี เลือกข้อมูลอย่างใดอย่างหนึ่ง เพิ่มลงไปในชีท ในcell เดียวกัน
Posted: Fri Dec 04, 2015 12:11 pm
by bank9597
ตั้งชื่อชีทควรเป็นภาษาอังกฤษครับ ไม่งั้นจะมีปัญหาแน่นอนในอนาคต
ลองปรับโค๊ด
Code: Select all
Dim lngLastRow As Long
lngLastRow = Sheet7.Range("A" & Rows.Count).End(xlUp).Row
lngLastRow = lngLastRow + 1
Sheet7.Range("A" & lngLastRow) = Form3.cboDay.Value & "/" & Form3.cboMonth & "/" & Form3.cboYear
Sheet7.Range("B" & lngLastRow) = Form3.TextBox1.Value
Sheet7.Range("C" & lngLastRow) = Form3.TextBox2.Value
Sheet7.Range("D" & lngLastRow) = Form3.TextBox3.Value
Sheet7.Range("E" & lngLastRow) = Form3.numtxt.Value
Sheet7.Range("F" & lngLastRow) = Form3.moneytxt1.Value
Sheet7.Range("G" & lngLastRow) = Form3.moneytxt2.Value
Sheet7.Range("H" & lngLastRow) = Form3.txtetc.Text
Form3.TextBox1 = ""
Form3.TextBox2 = ""
Form3.TextBox3 = ""
Form3.ComboBox1 = ""
Form3.ComboBox2 = ""
Form3.ComboBox3 = ""
Form3.numtxt = ""
Form3.moneytxt1 = ""
Form3.moneytxt2 = ""
Form3.txtetc = ""