I have a Table which has [Cust_ID], [Qty] and [Price]
I have a Query of the above table with a an extra calculated field called [extended] which is [Qty] x [Price]
I created a SubForm based on this Query which lists all these fields for each row for each record of [Cust_ID] which is on my main Form.
I created another SubForm based on another Sum Query which totals the [extended] for each [Cust_ID]
My issue is that as I enter new lines in the Subform with the details, the Total SubForm is not calculating the new total. If I program a DoCmd.Requery this works, but then it brings the form back to the first record.
How can I have the Subform Total refresh and still stay on the same record.
Thanks,
Sam