Cross Tab and % (percent) calculation
Hi People,
i have a cross-table as in this example:
somebody has an idea or an example?
Thanks for help
i have a cross-table as in this example:
procedure DBCross1OnPrintCell(Memo: TfrxMemoView; RowIndex, ColumnIndex, CellIndex: Integer; RowValues, ColumnValues, Value: Variant);
begin
if DBCross1.IsTotalRow (RowIndex) then
begin
case CellIndex of
0: Memo.Color := clRed;
1: Memo.Color := clblue;
2: Memo.Color := clyellow;
end;
end;
end;
somebody has an idea or an example?
Thanks for help
Comments