Locked checkbox with group by query

russiver

Registered User.
Local time
Today, 07:45
Joined
Dec 19, 2003
Messages
41
I have an accounts database that stores bank transactions in one table with a 'one to many' (transID to FKtransID) relationship to a second items table that
stores the items of that transaction.

The transactions table includes a yes/no field for checking off when a bank statement is received.

Ideally, I would like to create a query or a form based on a query that lists all transactions with a sum of the cash amount for all the items within a transaction - grouped by FktransID.

However, the group by statement in the query locks the statement checkbox so transactions cannot be ticked off.

Can anyone suggest a workaround?
 
Thanks. Will give that a try.
 
Should interact with form, not table or query. Use form/subform arrangement. Use Sum function to show sum of items in subform. If subform is in DataSheet view, use Totals button on ribbon to show a Totals row.

Domain Aggregate functions can cause slow performance in queries and even in textbox calculations.
 
Thanks for all the replies. Although a little slow, using DSum() for the sum gives me the check list I was looking for.
 

Users who are viewing this thread

Back
Top Bottom