G
Guest
Hello all,
I am reading a single record in my table and then want to update this
record. How would I do this?
vSql = "select * from tbImport"
Set db = CurrentDb()
Set rs = db.OpenRecordset(vSql)
Do While Not rs.EOF
If rs![MLength] < vLLen Then
xLen = "L"
End If
(Then update this record)
loop
I am reading a single record in my table and then want to update this
record. How would I do this?
vSql = "select * from tbImport"
Set db = CurrentDb()
Set rs = db.OpenRecordset(vSql)
Do While Not rs.EOF
If rs![MLength] < vLLen Then
xLen = "L"
End If
(Then update this record)
loop