This has been bugging me for a while now and I can't seem to find a way around it; I currently have a text box on a form (txt1) and the control source for this text box is a Sum() function linked to another text box (txt2) on another form. Txt1 totals up the values fine until there is a query run where there are no results on the form on which txt2 is situated; in this instance, because there are no records for txt1 to run the =Sum() function on, it simply returns #Error; since txt1 itself is then involved in a Sum function (the results for which are stored in txt3), txt3 returns the value #type due to txt1 being #Error. What I'd love to know is if there is a way to get txt1 to simply display "£0.00" if there are no arguments passed to it through the Sum() function.
Thanks.