Hello,
I'm writing some VBA in Access, part of which is to write to a table. I'm using this:
Set db = CurrentDb
Set rst = db.OpenRecordset("tblParcels")
rst.AddNew
rst!ID = 1
rst!URN = "TEST"
rst.Update
this = rst!URN
MsgBox this
However, when I run the code and then look at the table no...