How to stop print suppression on crosstab
I have a crosstab report that works fine but automatically does not print
like values immediately below a value. For example if I have a Column with
Last name and a Column with First name I ghet something like
Last-name First-name
JONES Jack
Fred
Harold
if I want the JONES to print for each record is there a parameter that will
let me do this? I have been all through the Docs but don't see it.
thanks, LL
like values immediately below a value. For example if I have a Column with
Last name and a Column with First name I ghet something like
Last-name First-name
JONES Jack
Fred
Harold
if I want the JONES to print for each record is there a parameter that will
let me do this? I have been all through the Docs but don't see it.
thanks, LL
This discussion has been closed.
Comments
use the OnFormat event for each cell to reset its visibility to true.
via.
Crosstab.Matrix.CaptionVisible[aColumn,aRow] := True;
where "Crosstab" is your crosstab subreport name.
Regards, Phillip Herries