Hey, thanks much. I thought you couldn't change field values in a table by
simply editing the corresponding field in a query based on that table. I see
you can.
> I thought you couldn't change field values in a table by
> simply editing the corresponding field in a query based on that table. I
> see
> you can.
It depends upon the Select query. For instance:
- If a Select query is based on multiple tables, it *might* not be editable.
Depends on the complexity of the joins.
- Select Queries with aggregate functions (Sum, Count, etc.) become
uneditable (a single query record potentially represents multiple data
records, so which records would you expect to get updated, even if it was
allowed?).
- Database functions (Dlookup, etc.) also turn a Select query uneditable. i
believe.
I'm sure this is not an exhaustive list. But simple single-table queries
(the kind you would use as the basis for a form) are almost always editable.
HTH,
> Hey, thanks much. I thought you couldn't change field values in a table by
> simply editing the corresponding field in a query based on that table. I
[quoted text clipped - 36 lines]
>> >
>> > Thanks for your help.