DBCross - Show percentage in the Grand Total colum

edited 9:21AM in FastReport 3.0
Hi

It's possible to show the percentage value in the Grand Total column(see a example below)?

Grand Total
100 10%
.. ..
.. ..
Grant Total .. 1000 100%

Tks

Comments

  • edited 9:21AM
    Hi

    Can I resolve this question using the OnPrinterCell?

    It's correct this code?

    begin
    if DBCross.IsGrandTotalColumn(ColumnIndex) then
    Value:= Value + ' ' + FloatToVar((VarToFloat(Value) * [TOTAL]) / 100);
    end;

    Thanks in advance

Leave a Comment