I’ve got the following very irritating problem…
I’ve got a table with 2 fields, account number and balance;
Account Balance
A 100
B 200
C 300
D 400
E 500
F 600
On my report I only want account D, E and F (in that order) and the balance next to it;
When the report gets to account E it should take the value of E (500) and add the running total of account A to C to it [500 + (100+200+300)] = 1100
The report should look like this….
D 400
E 1100
F 600
I’ve added a running total for A, B & C (RunTotal) and changed the formula for the balance to…
If Account = “E” then
Formula = Balance + RunTotal
Else
Formula = Balance
End if
But I get the following error ...“A running total cannot refer to a print time formula”
I know that is because the value calculated is not calculated at a time that the running total needs it….but how do I get around it?
I don't think it's possible to use a summary since the balances to be summarized is not included on the report;
Any help would be most welcome
I’ve got a table with 2 fields, account number and balance;
Account Balance
A 100
B 200
C 300
D 400
E 500
F 600
On my report I only want account D, E and F (in that order) and the balance next to it;
When the report gets to account E it should take the value of E (500) and add the running total of account A to C to it [500 + (100+200+300)] = 1100
The report should look like this….
D 400
E 1100
F 600
I’ve added a running total for A, B & C (RunTotal) and changed the formula for the balance to…
If Account = “E” then
Formula = Balance + RunTotal
Else
Formula = Balance
End if
But I get the following error ...“A running total cannot refer to a print time formula”
I know that is because the value calculated is not calculated at a time that the running total needs it….but how do I get around it?
I don't think it's possible to use a summary since the balances to be summarized is not included on the report;
Any help would be most welcome