Home General
New Blog Posts: Merging Reports - Part 1 and Part 2

Crosstab: Display 0 instead of blank cell?

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

  • 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;



  • 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.