I'm writing a summary invoice report that has the following columns:
INV# Subtotal Freight Tax Invoice Total
Here are the formulas that I created:
Subtotal: Sum({@Extended_Price},{invoice_view.invoice_no})
Since the freight and tax amounts on the invoice are listed on each invoice line item, I had to average them:
Freight: Average({invoice_view.freight},{invoice_view.invoice_no})
Tax: Average({invoice_view.tax},{invoice_view.invoice_no})
How can I sum these three formula fields to come up with an invoice total? I've tried the normal sum function without any luck. Can this be done?
Any help would be greatly appreciated.
INV# Subtotal Freight Tax Invoice Total
Here are the formulas that I created:
Subtotal: Sum({@Extended_Price},{invoice_view.invoice_no})
Since the freight and tax amounts on the invoice are listed on each invoice line item, I had to average them:
Freight: Average({invoice_view.freight},{invoice_view.invoice_no})
Tax: Average({invoice_view.tax},{invoice_view.invoice_no})
How can I sum these three formula fields to come up with an invoice total? I've tried the normal sum function without any luck. Can this be done?
Any help would be greatly appreciated.