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
Bhupathi YadavBhupathi Yadav 

When i am updating long text fields values through apex first value its taking as null

User-added imageAny resason why its taking as null.
Code whre i am hard coding the value:
User-added image
Bhargavi TunuguntlaBhargavi Tunuguntla
Hi Bhupathi,

Just check a null condition:
 
if(description!=null)
   description+='ur data';
else
   description='ur data';

Hope this may work out for you.

Thanks
Bhargavi.