Clear values in multi-value field

robtperk

New member
Local time
Today, 15:50
Joined
Aug 8, 2012
Messages
7
How do I clear values in a multi-value field in code. It seems it won't work in an update query. The field values are numeric long.
 
Do you really need to use multivalued field? It may be causing you more trouble than you think.
A lot of Access developers have chosen to ignore this "feature."
 
Last edited:
Yes. Doing so otherwise would cause me to create a cumbersome and hard to use form.
 
Thanks JANR. The following worked like a charm:
[BEGIN CODE]
DELETE tblWorkTasks.Employees.Value
FROM tblWorkTasks
WHERE (((tblWorkTasks.Employees.Value)>-1));
[/END CODE]
 

Users who are viewing this thread

Back
Top Bottom