How to merge the cells?
Hello!
Is it possible to merge (group) cells with the same values, as in the example above (marked by the red circles)?
How can I do this?
Is it possible to merge (group) cells with the same values, as in the example above (marked by the red circles)?
How can I do this?
Comments
procedure Memo68OnBeforePrint(Sender: TfrxComponent);
var
LastState :string;
begin
with Memo68.Frame do
if LastState <> <DBXQuery5."ACTIVITY">
then Typ := ftTop + ftLeft
else Typ := ftLeft;
LastState := <DBXQuery5."ACTIVITY">;
end;