Dear Sir
I have a report to be created with grouping statewise.
I get the data grouped statewise.but when I have to
total the data for all states i.e. grand totol of the
field subscription the running totals formula totals
for all the states except for the last one.
The formula which I use in the group header is
WhilePrintingRecords;
Numbervar op;
Numbervar grandop;
grandop:= grandop + op;
op := 0;
The following is the formula i use in details column
WhilePrintingRecords;
NumberVar op;
NUMBERVAR GRANDOP;
op :=op+ToNumber({@OPBALTOT})+ToNumber({@LIABVAL});
The formula in the group footer/grandtotal column
is
WhilePrintingRecords;
NumberVar grandop;
I feel the problem lies like this:
Initially the op is set to 0
Then it has to total the data for the first state and display in the grandop;but it is displaying only 0
after the first state grouping.
Can you help me sir
If you do need any clarification I would like to provide
the same
bye for now
kalps
I have a report to be created with grouping statewise.
I get the data grouped statewise.but when I have to
total the data for all states i.e. grand totol of the
field subscription the running totals formula totals
for all the states except for the last one.
The formula which I use in the group header is
WhilePrintingRecords;
Numbervar op;
Numbervar grandop;
grandop:= grandop + op;
op := 0;
The following is the formula i use in details column
WhilePrintingRecords;
NumberVar op;
NUMBERVAR GRANDOP;
op :=op+ToNumber({@OPBALTOT})+ToNumber({@LIABVAL});
The formula in the group footer/grandtotal column
is
WhilePrintingRecords;
NumberVar grandop;
I feel the problem lies like this:
Initially the op is set to 0
Then it has to total the data for the first state and display in the grandop;but it is displaying only 0
after the first state grouping.
Can you help me sir
If you do need any clarification I would like to provide
the same
bye for now
kalps