Hi all,
Background:
2 linked tables [02Transactions] and [03Products].
1 continuous form [TransactionBase] which takes data from both tables.
3 text boxes (of interest) on the form:
[Sold] - created with the form, the value of which is specified by the form's text box control source [Sold].
[Text25] (To be renamed 'Product_Price') - an added calculated text box, the value of which is derived by a DLookUp statement that gets the relevant value for each record from the table [03Products].
[Text28] (which will be renamed to 'Net') - an added calculated text box that contains =[Text25]*[Sold] in the control source .
Everything to this point works as it should.
The Problem:
I created a text box [Text36] (To be renamed 'Total Net') and placed it in the form footer. Despite my best efforts in following the examples, including the obvious =SUM([Text28]), nothing I have placed in the control source has returned anything else but #Error.
Is it just that Sum doesn't like operating on calculated fields?
The Solution:
This is where you good folks get to throw your ideas at me
Thanks all
NH