the field with blank value does not reflect in the graph

  • Thread starter Thread starter Bart
  • Start date Start date
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
 
Back
Top