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."
Thanks JANR. The following worked like a charm:
[BEGIN CODE]
DELETE tblWorkTasks.Employees.Value
FROM tblWorkTasks
WHERE (((tblWorkTasks.Employees.Value)>-1));
[/END CODE]