August 29, 200619 yr Hi. I want to have a certain summary field in a record/table the summary should be like the sum of all records's field "amount" where field "deal_id" equals that record's "deal_id" field. I couldn't find how to do so in the basic sumary field options. thanks for your help, it is really important. yaron.
August 30, 200619 yr Sounds like you want an Aggregate function like Sum. The Sum function allows you to add up records across a relationship. For example, you could total all the related records you see in a portal using this function. So, if you have a parent table related to child records, make the following formula in the parent table: Sum(Child::Number)
August 30, 200619 yr Use a self-join relationship. Just make a new table occurrence using the same base table and relate the two based the deal_id field.
Create an account or sign in to comment