Do you want to change the value to null if the value is zero?
Or do you want to change the value to null if the value has a zero
anywhere in it?
I am guessing the former. You should be able to use the following
expression if you just want to do this temporarily
IIF([SomeField] = 0, Null, SomeField)
If you want to do it permanently, you would probably use an update query.
UPDATE SomeTable
Set SomeField = Null
WHERE SomeField = 0
'====================================================
John Spencer
Access MVP 2002-2005, 2007-2008
Center for Health Program Development and Management
University of Maryland Baltimore County
'====================================================