Announcement

Collapse
No announcement yet.

Calculate SUM value in Opportunities

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Calculate SUM value in Opportunities

    Hello there,

    New to EspoCRM and i have a quick question:

    I want to add a new field inside the Contacts page where it will calculate the SUM of all the Won Opportunities a client have. Any idea how to proceed?

    PS: Also any idea how to delete completed tasks automatically after X days?
    Last edited by leonidasfs; 09-21-2020, 08:21 PM.

  • #2
    Hello.

    > I want to add a new field inside the Contacts page where it will calculate the SUM of all the Won Opportunities a client has. Any idea how to proceed?

    1. Open Administration -> Entity Manager -> Contact -> Fields -> add a new field of the 'currency' type to store the sum value (lets call it 'totalWonAmount')
    2. Open Administration -> Entity Manager -> Contact -> Formula -> use this function ->
    Code:
    totalWonAmount = entity\sumRelated('opportunities', 'amount', 'won');
    Read more about it here https://docs.espocrm.com/administrat...titysumrelated.

    Note, this formula triggers to recalculate the totalWonAmount each time you make some changes in the target Contact or fire a 'Recalculate Formula' (The admin can run Recalculate Formula action for specific records from the list view: select records (or all search results) > click Actions dropdown > click Recalculate Formula).

    In order to make some more dynamically logic (e.g. if an Opportunity record status changed to 'Closed Won', then it automatically triggers recalculation for the totalWonAmount of the related Contact) you need to:
    1. Write a custom Hook (programming skills required) https://docs.espocrm.com/development/hooks/
    2. Use Workflow from the Advanced Pack https://docs.espocrm.com/administration/workflows/

    > Also any idea how to delete completed tasks automatically after X days?

    You need to create a Scheduled Workflow that is based on the report. Here is useful Information:
    - https://docs.espocrm.com/administrat...ows/#scheduled
    - https://docs.espocrm.com/administrat...-target-record
    - https://docs.espocrm.com/user-guide/reports/

    Comment


    • #3
      I'm looking into the same calculation need ... being able to total a field from multiple sub-entity records, then update that value into the parent entity.

      I see the required formula to do this is (example): totalWonAmount = entity\sumRelated('opportunities', 'amount', 'won');

      However, it is my understanding that with Espo version 7 onward, you now have to use "Select Builder" to create any desired query function ... in your case, to ONLY include the Status="Won" records in the total.

      Has anyone been able to get this "Select Builder" function to work?
      If so, do you have an actual example (i.e. the code from a WORKING Espo instance) to share?

      Thanks.

      Comment


    • #4
      Hi, Maximus
      i can't run the formula, is the condition a must in it?

      Comment


      • #5
        This is why some WORKING/LIVE examples, showing actual formula syntax used along with actual pre-defined filters (in Select Builder), would be very helpful. Something that can simply be copy-and-pasted, then adapted.

        Espo is feature-rich with all the different functions available, but it seems that getting them to work can sometimes be hit-or-miss. Many of us are not programmers, but can understand some code enough to be able to adapt it for our own needs.

        stayfi ... to answer your question, according to the Espo documentation, the condition is optional...

        https://docs.espocrm.com/administrat...titysumrelated
        Last edited by Mark G.; 12-13-2021, 12:35 PM.

        Comment


        • #6
          Mark G. Have you found a solution?
          Last edited by stayfi; 12-13-2021, 06:01 PM.

          Comment


          • #7
            Apparently, starting with Espo version 7, "Select Builder" should be used to create pre-defined filters ...


            "Select Manager" is being deprecated ...
            Last edited by Mark G.; 12-13-2021, 06:06 PM.

            Comment


            • #8
              Originally posted by stayfi View Post
              Mark G. Have you found a solution?
              No. I'm new to Espo, so still finding my way around ... and experimenting!
              However, once I find a solution I will publish on this board.
              When users have a few real-life working examples to copy-and-paste and adapt, the mystery will be solved.
              We don't all need to be spending time trying to re-invent the wheel ... or just getting it to turn.
              Collective effort and sharing!
              Last edited by Mark G.; 12-13-2021, 07:02 PM.

              Comment


              • #9
                Waiting for it, thanks

                Comment

                Working...
                X