How to sum flowfield

shwetashweta Member Posts: 94
I have a field in cust ledger entry table where Credit amount and debit amount are flow fields.I want the sum of these fields.

Comments

  • TonyHTonyH Member Posts: 223
    In code you would set your filters and do a calcfields

    CLE.Clacfields(filed1,field2);
    Value := CLE.field1 + field2;

    If its in a form then you can have the SourceExpr as Field1+Field2

    T
  • shwetashweta Member Posts: 94
    TonyH wrote:
    In code you would set your filters and do a calcfields

    CLE.Clacfields(filed1,field2);
    Value := CLE.field1 + field2;

    If its in a form then you can have the SourceExpr as Field1+Field2

    T

    Thanks i got the solution
    i also want to know the concept behind Customer Ageing report.
  • TonyHTonyH Member Posts: 223
    your welcome

    I would start a new post on Customer Ageing issue.

    T
Sign In or Register to comment.