M
MichaelK
I have a table where I have fields SalesRepId and Commissions and some
other fields.
I have a query where I calculate sum of commissions grouped by
SalesRepId for some period of time from another table. And result of the
query 2 fields:
SalesRepId and TotCommiss.
Now I want to run Update query where for each SalesRepId in the first
table
update Commissins with TotCommiss from the query.
It gives me a message that it suppose to be an updatable query.
(I use the way around by creating the temp table with results of the sum
query,
and after when the same data in the table I can run Update query based on
tables,
and it working fine. But I hate this way.)
Any knows what the problem is and why this query not updatable..
Just hope all this not too confusing.
Thanks,
Michael
other fields.
I have a query where I calculate sum of commissions grouped by
SalesRepId for some period of time from another table. And result of the
query 2 fields:
SalesRepId and TotCommiss.
Now I want to run Update query where for each SalesRepId in the first
table
update Commissins with TotCommiss from the query.
It gives me a message that it suppose to be an updatable query.
(I use the way around by creating the temp table with results of the sum
query,
and after when the same data in the table I can run Update query based on
tables,
and it working fine. But I hate this way.)
Any knows what the problem is and why this query not updatable..
Just hope all this not too confusing.
Thanks,
Michael