T
TA
Hello & Thanks for reply,
I want to do an error check for a table with 20 columns.
If found an error then put all record information from
Rs_scan into Rs_ErrorScan.
How can I prevent to retype for every single column?
MS Access have function like copy that row and "paste"
that row into another table ?
Like:
If IsNull(Rs_Scan.clientid) Then
Rs_ErrScan.AddNew
Rs_ErrScan!clientid = Rs_Scan.Fields("Clientid")
Rs_ErrScan!errorcode = Rs_Scan.Fields("100"
' ....
' ....
End If
Best Regards,
TA
I want to do an error check for a table with 20 columns.
If found an error then put all record information from
Rs_scan into Rs_ErrorScan.
How can I prevent to retype for every single column?
MS Access have function like copy that row and "paste"
that row into another table ?
Like:
If IsNull(Rs_Scan.clientid) Then
Rs_ErrScan.AddNew
Rs_ErrScan!clientid = Rs_Scan.Fields("Clientid")
Rs_ErrScan!errorcode = Rs_Scan.Fields("100"
' ....
' ....
End If
Best Regards,
TA