Hello Kutest.
> My formula is =Sum([Labor Totals by Workorder]![Labor Total]+
> [Parts Totals by Workorder]![Parts Total])
>
> I had a different formula but that one gave me the same '#ERROR'
> error message so i tried this one but it doesnt work either... if
> you can give me some pointers that would be great !!
What are [Labor Totals by Workorder] and [Parts Totals by Workorder]?
When using your sum formula in the footer of the form, the fomula
inside the brackets must not contain controls with calculated
expressions but must consist of fields of the query the form is based
on.
It seems to me that [Parts Totals by Workorder] and the other one are
queries in your database that you try to access this way, which is not
allowed. Maybe your formula should be written this way:
=DSum("[Labor Total]","[Labor Totals by Workorder]") +
DSum("[Parts Total]","[Parts Totals by Workorder]")

Signature
Regards,
Wolfgang
Kutest - 28 Sep 2007 17:41 GMT
Thanks man!! That worked your the best !!!
> Hello Kutest.
>
[quoted text clipped - 15 lines]
> =DSum("[Labor Total]","[Labor Totals by Workorder]") +
> DSum("[Parts Total]","[Parts Totals by Workorder]")