Toggle navigation
ReportBuilder Support Forums
Categories
Discussions
Activity
Sign In
Home
›
General
ReportBuilder 22.06 now available including Delphi 12.2 support!
New Blog Posts: Merging Reports -
Part 1
and
Part 2
Crosstab: Display 0 instead of blank cell?
rbuser
September 2003
edited September 2003
in
General
On a crosstab report is there any way to get the report to replace null
cells with a default value?
Comments
rbuser
September 2003
edited September 2003
Don't know if this is the 'right' answer, but I got it to work by putting
this in the OnGetValueText event:
begin
if aValue < '0'
then aValue := '0';
end;
nicocizik
September 2003
edited September 2003
Hi Brian,
Yes, you will want to use the OnGetValueText event to access cirtain cells
in your crosstab component. This should work fine.
--
Best Regards,
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com
This discussion has been closed.
Comments
this in the OnGetValueText event:
begin
if aValue < '0'
then aValue := '0';
end;
Yes, you will want to use the OnGetValueText event to access cirtain cells
in your crosstab component. This should work fine.
--
Nico Cizik
Digital Metaphors
http://www.digital-metaphors.com