1 answer
Yes .. You can do it. Let us Consider the long text area field description on Account for this example. Here is the sample code
;List<Account> accs = new List<Account>();
for(Account a : [Select Id , Name , Description from Account]){
a.Description =a.Description+'New Text Goes' here ;
accs.add(a) ;
}
update accs