Summing Up Using Only Memo Fields

PixelPointerPixelPointer Vaughan, Ontario
edited 7:44AM in FastReport 3.0
Is it possible to use a 2 pass report to perform calcualtions in a memo field, without having to resort to script? I would like to use the sum of a column in a group in a calculation in the masterdata field. Is this possible? If so, how is it done?

Comments

  • edited 7:44AM
    Try this:
    if not Engine.FinalPass then //if first pass then run script
    begin
    ...
    ...
    YOU CODE
    ...
    ...
    end;
  • PixelPointerPixelPointer Vaughan, Ontario
    edited 7:44AM
    Can I do this directly in the memo fields on a report? If so, that is cool. I am going to give it a try. ;)
  • edited 7:44AM
    wrote:
    Can I do this directly in the memo fields on a report?
    No, only in script ;)

Leave a Comment