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
Tarun DasTarun Das 

How Do I add Up 2 fields in Lead

My intention is to utilise Process Builder to add up 2 fields namely  No of Employees and No of location in Description field of lead.Now my question is how i can do this with the help of process builder??User-added image
Best Answer chosen by Tarun Das
Alain CabonAlain Cabon
You can create a new formula field in the current object like:  Total = TEXT ( No of Employees + No of location )

The formula should be of return type Text 

You want to update the description field so it is a field update.  Description = Total 

Field Update Actions
https://help.salesforce.com/articleView?id=workflow_managing_field_updates.htm&type=5
 

All Answers

Alain CabonAlain Cabon
Hi,

Why don't you use just a formula field?
 
Tarun DasTarun Das
Thanks Alain for your response,will really appreciate if you can elaborate a little
Alain CabonAlain Cabon
You can create a new formula field in the current object like:  Total = TEXT ( No of Employees + No of location )

The formula should be of return type Text 

You want to update the description field so it is a field update.  Description = Total 

Field Update Actions
https://help.salesforce.com/articleView?id=workflow_managing_field_updates.htm&type=5
 
This was selected as the best answer
Alain CabonAlain Cabon
The field update can be called by a simple Workflow.
Tarun DasTarun Das
Created created formula desc  but cant see this formula in Process builder,i mean how do i call this fomula 'desc ' here in Process builderUser-added image
User-added image