UniqeValues property

  • Thread starter Thread starter Focus
  • Start date Start date
F

Focus

I have an updatable query based on some tables.
adding to this query a query with UniqeValues property (distinct)
reflect my whole query to be unupdatable.
is there a way to includ an UnUpdatable query and still be able to updat
other tables fields in query?

thanks
 
By using the UniqueValues property, you've disconnect the results from any
specific row(s). Let's say you had several people (rows), each with the
same address field value (all live at the same address).

If you queried for UniqueValue of address, how would you know WHICH of the
people's rows to update?
 
Back
Top