The control source for the text box is:
Code:
=DSum("qryBenesPrimary.BequestMax","qryBenesPrimary")
The query is:
Code:
SELECT tblBeneficiaries.Lname, tblBeneficiaries.FName, tblBeneficiaries.Addr1, tblBeneficiaries.Addr2, tblBeneficiaries.Addr3, tblBeneficiaries.City, tblBeneficiaries.State, tblBeneficiaries.Zip, tblBeneficiaries.Phone, tblBeneficiaries.BequestMax, tblBeneficiaries.BequestMin, tblBeneficiaries.ContingentBeneficiary, tblBeneficiaries.BequestContingent, tblBeneficiaries.Contingent
FROM tblBeneficiaries
ORDER BY tblBeneficiaries.BequestMax DESC;
It contains text, currency, and one boolean fields. Running Access 2010 on Win7x64. -Ron
Edit - I just discovered that if I open the form, click to design view and then back to form view, the textbox becomes filled in. Also, if I open the form DIRECTLY to design view, then click to form view, it's also filled in. Curious.....