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
Varshitha VVarshitha V 

Having 3 objects : Account,Opportunity and Course objects.I want Opportunity name to be Account_name.Course_name

Hii,
   Am having 3 objects : Account,Opportunity and Course objects.I want Opportunity name to be populated as respective Account_name with Course_name.This should be done without using any code.
How to do this? help me to do this action.

Thanks in advance..

 
PulaK_PrabhakaRPulaK_PrabhakaR
HI,
  You can create a workflow to do this if there is lookup relation between Opportunity and Course object.
  Create a workflow rule on Opportunity Where:
             Rule Criteria :-  Opportunity:Opportunity Name NOT EQUAL TO null
             Evaluation Criteria :-  created, and every time it's edited
    In "Add Workflow Actions" select "New Field Update". In "Field to Update" give "Opportunity: Opportunity Name".
    Select the checkbox of "Use a formula to set the new value" of "Specify New Field Value" section.
    In 'Show Formula Editor' box give "Account.Name & '.'  &  Course__r.Name"
Save it and activate the workflow.