Onlylonely
Registered User.
- Local time
- Today, 23:17
- Joined
- Jan 18, 2017
- Messages
- 43
Hi Guys,
Any clue to update the table with incremental number?
Any clue to update the table with incremental number?
Code:
With rst
Do Until .EOF
If (![Remark] = "Rework") Then
Rework = Rework + 1
Else
End If
.MoveNext
Loop
End With
For R = 1 To 19
CurrentDb.Execute "INSERT INTO Issuetbl (Part_Number, Serial_Number, Job_Number , Step, Character_ID, Remark) " & _
" VALUES ('" & Me.txtPN & "','" & Me.txtSN & " ','" & Me.txtJN & "', '1' , " & R & " , 'Rework' )"
Next
Call Load_update_Step1