OK. The form is based on the table 'RangeFee' and is used to populate that table. The form works exactly as its was intended ie to add the date, members name and a check box as to the payment (or not) of range fee to the RangeFee table. No data about the total of range fee payments for that day are required to be kept in the table. As to the source of the count, I don't know, but the calculation is done on the FORM at Text box 8 in the form footer. The calculation is =Sum(Abs(RangeFee)) to get the total number of check boxes checked and this part works fine. Then I can add =Sum(Abs(RangeFee))*12 to get the total range fee on the form and that works fine as well. However the Cost of the RangeFee can vary from time to time and I would like the calculation to select the CURRENT RangeFee Cost from the Fees table. I have a query which returns the correct value but I cannot, for the life of me, work out how to multiply the Sum(Abs(RangeFee)) by the Fees Query and get a correct output on the form.
The next step (once this is solved ) is to create a report based on the form. That bit is simple. Just the calc eludes me.