So I have a dataset like this:
Invoice Line# Line$ Inv $
101 1 50 100
101 2 25 100
200 1 50 50
I want to output the Invoice # and $ in a group and the line items in a detail like this:
Invoice Invoice $
101 100
Item
1 50
2 25
200 50
Item
1 50
Now I need to add a total on invoice and I expect to see $150. Unfortunately I get $250. So I think that I need to be incrementing the total for the invoice ONLY when the group header prints.
Does this make sense?
Is this outside the scope of CR8.5 - do I have to do this manually?
Invoice Line# Line$ Inv $
101 1 50 100
101 2 25 100
200 1 50 50
I want to output the Invoice # and $ in a group and the line items in a detail like this:
Invoice Invoice $
101 100
Item
1 50
2 25
200 50
Item
1 50
Now I need to add a total on invoice and I expect to see $150. Unfortunately I get $250. So I think that I need to be incrementing the total for the invoice ONLY when the group header prints.
Does this make sense?
Is this outside the scope of CR8.5 - do I have to do this manually?