Could we have some more information?
Does this sum what you are trying to do:
1. If there is data in "!bill" then leave the field alone"
2. If the field is empty, then fill it with a NULL??
Why not create a recordset with only fields that have len(!bill) = 0 and then Update the entire recordset with !bill = vbnullstring?
Also, we might help more if you can give us background on what you need
Main Topics
Browse All Topics





by: patricka_0377Posted on 2008-10-16 at 10:33:16ID: 22733620
could try via a SQL UPDATE statement
from memory i think the command is CurrentDB.RunSQL (or something like that dont quote me)
then the SQL you want is.
UPDATE table_name
SET column1=value, column2=value2,...
WHERE some_column=some_value