D
David M C
I'm trying to write an update query, but am stuck because the criteria
required make the query non-updateable.
tblTask:
TaskID (pk)
TaskName
Price
Completed
tblTransaction:
TaskID (fk)
TransactionID (pk)
EmployeeID
Authorised
I want to update the completed field. If SumOfAuthorised > Price, Completed
= 1, else Completed = SumOfAuthorised / Price.
The problem is, as soon as I use a totals query (or evidently if I use a
Sum), the query becomes non-updateable. Any ideas?
Thanks,
Dave
required make the query non-updateable.
tblTask:
TaskID (pk)
TaskName
Price
Completed
tblTransaction:
TaskID (fk)
TransactionID (pk)
EmployeeID
Authorised
I want to update the completed field. If SumOfAuthorised > Price, Completed
= 1, else Completed = SumOfAuthorised / Price.
The problem is, as soon as I use a totals query (or evidently if I use a
Sum), the query becomes non-updateable. Any ideas?
Thanks,
Dave