J
Joe Bohen
I asked a question on 25 September, I wanted to show all
detail lines for invoices on a table but only show the
invoice total (tnett) once. I have managed to provide part
of the answer myself I have grouped the report on invoice
numbers hiding the detail I don't require and placed two
unbound text boxes on the reports detail section. The
first has a control source of 1 and is set to a running
sum across the group, the second shows the invoice total
(tnett) only if the first unbound text box has a value =
to 1. This is achieved by the following event on the on
format of the detail section.
invnumber = Text57
If (invnumber) = 1 Then
Text58 = tnett
Else
Text58 = 0
My problem now is how to total the values in text58 for
the whole report. If I try to sum text58 I get an error in
the box.
Any support much appreciated.
Joe
detail lines for invoices on a table but only show the
invoice total (tnett) once. I have managed to provide part
of the answer myself I have grouped the report on invoice
numbers hiding the detail I don't require and placed two
unbound text boxes on the reports detail section. The
first has a control source of 1 and is set to a running
sum across the group, the second shows the invoice total
(tnett) only if the first unbound text box has a value =
to 1. This is achieved by the following event on the on
format of the detail section.
invnumber = Text57
If (invnumber) = 1 Then
Text58 = tnett
Else
Text58 = 0
My problem now is how to total the values in text58 for
the whole report. If I try to sum text58 I get an error in
the box.
Any support much appreciated.
Joe