In the Accounts module I want to add a Date of last meeting field and have it auto populate. Is there a way to have it locate the last meeting held and put the date of that meeting in the field? Thanks so much
In the Accounts module I want to add a Date of last meeting field and have it auto populate. Is there a way to have it locate the last meeting held and put the date of that meeting in the field? Thanks so much
I added the below formula to a calculated field in the Contacts module to fetch the earliest call date from the calls module. The formula works well but only if you add a new call to a contact. If there are calls already related, it doesnt populate the min call date in the Contacts module. Any idea where I'm going wrong or how to resolve this?
(rollupConditionalMinDate($calls,"date_start",createList(""),createList("")))
Hi Christopher Hart ,
Any time you add or modify a Sugar Logic formula, you need to run a 'recalculate values' action from the list view on the records you wish to have updated. Otherwise, existing records will not update with the calculation until they are saved or, in scenarios like yours, a new relationship is added before the parent record is saved.
Chris