กระทู้เก่าบอร์ด อ.Yeadram
1,206 2
URL.หัวข้อ /
URL
มีคำสั่งตัวไหนที่ทำให้ข้อมูลเหมือนกับ row ข้างบนค่
ตอนนี้ใช้คิวรี่แยกข้อมูลค่ะ และได้ออกมาเป็นรูปแบบนี้แล้ว
แต่ปัญหาอยู่ที่ว่าจะทำอย่างไรใน field 1 ให้ข้อมูลที่ว่างอยู่เอาข้อมูลจากแถวบนลงมาได้ค่ะ
Field1 Field2
A0001 p001
p002
p003
A0002 p001
p002
p003
แต่ปัญหาอยู่ที่ว่าจะทำอย่างไรใน field 1 ให้ข้อมูลที่ว่างอยู่เอาข้อมูลจากแถวบนลงมาได้ค่ะ
Field1 Field2
A0001 p001
p002
p003
A0002 p001
p002
p003
2 Reply in this Topic. Dispaly 1 pages and you are on page number 1
2 @R08727
ขอบคุณมากๆ เลยค่ะ คุณแดน ใช้ได้แล้วค่ะ
Time: 0.3611s
เขียน code ด้านล่างไว้ใน module
Function FullFill()
Dim Rs As Recordset
Dim Mem As String
Set Rs = CurrentDb.OpenRecordset("Table1")
Do Until Rs.EOF
If Rs![Field1] = "" Then
Rs.Edit
Rs![Field1] = Mem
Rs.Update
End If
Mem = Rs![Field1]
Rs.MoveNext
Loop
Rs.Close
End Function
เสร็จแล้วสั่ง run