By "reflect" you mean to still have it? From a query perspective, you can
try to use an outer join, if you have a table with all 'field values', no
dup:
SELECT ...
FROM TableWithAllFieldsValueNoDup LEFT JOIN yourOtherTable
ON TableWithAllFieldsValueNoDup.FieldName = yourOtherTable.FieldName
Vanderghast, Access MVP