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
Amit Kr SinghAmit Kr Singh 

How to Update or Concatenate parent object text field value with child object text field value

Hi All,

In my current scenario, i am having 2 object
1. Project__c is parent object  field is 
     projectImplementation__c
2 Timesheet __c is child object  (in timesheet object Project is master)  field is 
    ThimesheetDescription__c

Now when user creating timesheet multiple time  and filling TimesheetDescription then  this value needs to add into Project object 
projectImplementation__c field value  every time

please help me. 
HARSHIL U PARIKHHARSHIL U PARIKH
Let me understand this:

Let's say there is a project named Apex Project and it has 3 records of Timesheet__c object with values in ThimesheetDescription__c such as "This is timesheet -1", "This is timesheet -2", "This is timesheet -3" accordingly.

At this point the projectImplementation__c should be = This is timesheet -1 This is timesheet -2 This is timesheet -3

Is this the requirement?