=sum[OriginalBill]
will sum the selected record. Instead use:
=DSum ("OriginalBill", "TheNameOfTheTable")
If you only want to sum some of the records in the table, use:
=DSum ("OriginalBill", "TheNameOfTheTable", AFilter)
AFilter should be just like a form filter like
"FieldName = " & ControlNameOnTheForm