Table LoadDates has two date fields, DocDate and SpreadSheetDate, never more than one record each. Both date values are populated. Table DataFile has date field AsOf.
I want to set the DataFile.AsOf values to the value in LoadDates.SpreadSheetDate where ever the DataFile.AsOf value is null.
I created this Update Query:
UPDATE DataFile SET DataFile.AsOf = LoadDates.SpreadSheetDate
WHERE DataFile.AsOf is null;
When I execute the query, Access displays an Enter Parameter requester for inputting a date instead of just using the LoadDates.SpreadSheetDate value. How can I get it to just use the LoadDates value?