Is there a function to write to practicular field in table.
For example wit DLookup function we read particular field
from table, is there similar function for writing to field in table.
Dim x As Integer
Dim y As Integer
x = 1
y = 2
a = DLookup("[field]", "table", _
"[field2] = " & x And "[field3] = " & y)
In above example criteia is incorect,
how can I write it correct.