Summing up a Column in Access

D

dquam7

I am putting together a very simple report to capture missed freight on Sales
Orders. I want the report to have a running accum of total amount of freigt
missed and I cannot seem to figure out how to sum them up in the footer of
the report
 
D

Duane Hookom

Add a text box to the REPORT FOOTER section with a control source like:
=Sum([FreightMissed])
While this might work, it is a WAG since you haven't provided your table
structure or sample records.
 
Top