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
Bindu Dubey 8Bindu Dubey 8 

Copy Formula Field Value to Another field

I want to copy VALUE from a field A (Forumula Field) (total number) to FIELD B
FIELD A is a (Data TYe: Formula field) in custom object
FIELD B is a Custom text field in Standard object opportunity.
keyur modikeyur modi
Hi,
Your requirement is like to update the FIELD B at time of record creation or record updation , if yes then use workflow to update the FIELD B,
where you can assign the value in filed update action as TEXT(FIELD A) .

Please let me know if this will help.

Thanks,
Keyur Modi
cldavecldave
It depends on the relationship between custom object and Opportunity.

If the custom object is a child of opportunity, simply create a formula field on custom object that will fetch data from parent. Or you can even use Worflow as suggested above by Keyur.

If it's the opposite u can use Process builder to update child record(s) with any info you want (you can take value from formual field, no problem)

Hope it helps