function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
s5s5 

Formula fields

Hi,

 

How to create the cross formula for objects.i have to create cross formula between one standard object Account and one custom object Request.The Price field value entered in Request has to update in Account Total Price field and each time when i insert price it has to go and add to Account object field i.e in Total Price field.

 

How can this be done.Please help me in this.

Jake GmerekJake Gmerek

If you have not done it yet, you have to create a relationship between the Account object and the Request object.  From your description of the problem you would need a field on the request object that is at least a lookup field for the account, but a master-detail relationship would also work if that is already set up.

 

Then you can create a roll up summary field on the Account object that would SUM the price field on the Request object.