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
Sampath palli 2Sampath palli 2 

Field update by using Workflow rule

Hai all

I have an requirememnt to create field update action using workflow rule

For example i have two custom objects like Credit card and payment .both are having Master-Detail relationship means  here credit card object is parent and payment object is child

When i enter Amount in payment object ammount field it automatically update the limit filed in credit card object i have write the formula like this but it's throw errorCheck this Clip
Best Answer chosen by Sampath palli 2
Pankaj_GanwaniPankaj_Ganwani
Hi Sampath,

You don't need to explicitly write = in your formula. Simply write Amount__c + Credit_Card__r.Limit__c in your formula to assign the value.

Thanks,
Pankaj