Subtotals

L

Lori LeRoy

I have a sales order report that I want to display the units ordered subtotal
if the ship quantity is zero and/or the line item is open; and the units
shipped if the quantity shipped is greater than zero and/or the line item is
closed. (if any quantity is shipped that line item is closed). currently I
have this for the line item subtotal:
SubtotalSO: CCur(tblSOTransactions.UnitPriceSO*[UnitsOrderedSO])

And it displays the units ordered subtotal regardless of whether the line
item is open or quanities have been shipped, creating a larger total for the
entire report. I'm sure this is a simple if statement, but I'm at a loss.
Thanks.
 
D

Duane Hookom

Can you provide some field names, data types, sample records, and desired
display in the report?
 
L

Lori LeRoy

I just found this posting - I apologize for the late response.

The sorting & grouping in the report is as follows:
SalesOrderID
Openlineitem
ItemNo
ProductID

The detail in the report is:
itemorder
SOTransactionID
Shipdate
UnitsOrdered
UnitsShipped
OpenLineItem
price
SubtotalSO

and the footer is
=Sum[(SubtotalSO)]

Thank you,
Lori

Duane Hookom said:
Can you provide some field names, data types, sample records, and desired
display in the report?


--
Duane Hookom
MS Access MVP


Lori LeRoy said:
I have a sales order report that I want to display the units ordered
subtotal
if the ship quantity is zero and/or the line item is open; and the units
shipped if the quantity shipped is greater than zero and/or the line item
is
closed. (if any quantity is shipped that line item is closed). currently I
have this for the line item subtotal:
SubtotalSO: CCur(tblSOTransactions.UnitPriceSO*[UnitsOrderedSO])

And it displays the units ordered subtotal regardless of whether the line
item is open or quanities have been shipped, creating a larger total for
the
entire report. I'm sure this is a simple if statement, but I'm at a loss.
Thanks.
 
D

Duane Hookom

We don't know what defines a line item as "open". I guess that "ship
quantity" is "UnitsShipped"? There are no fields named UnitsOrderedSO and
UnitPriceSO.

You need to talk using field names or at least define the fields. Also,
field types might be important or possible values.

--
Duane Hookom
MS Access MVP


Lori LeRoy said:
I just found this posting - I apologize for the late response.

The sorting & grouping in the report is as follows:
SalesOrderID
Openlineitem
ItemNo
ProductID

The detail in the report is:
itemorder
SOTransactionID
Shipdate
UnitsOrdered
UnitsShipped
OpenLineItem
price
SubtotalSO

and the footer is
=Sum[(SubtotalSO)]

Thank you,
Lori

Duane Hookom said:
Can you provide some field names, data types, sample records, and desired
display in the report?


--
Duane Hookom
MS Access MVP


Lori LeRoy said:
I have a sales order report that I want to display the units ordered
subtotal
if the ship quantity is zero and/or the line item is open; and the
units
shipped if the quantity shipped is greater than zero and/or the line
item
is
closed. (if any quantity is shipped that line item is closed).
currently I
have this for the line item subtotal:
SubtotalSO: CCur(tblSOTransactions.UnitPriceSO*[UnitsOrderedSO])

And it displays the units ordered subtotal regardless of whether the
line
item is open or quanities have been shipped, creating a larger total
for
the
entire report. I'm sure this is a simple if statement, but I'm at a
loss.
Thanks.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top