You need to sign in to do that
Don't have an account?
How to move data from one field to another field without saving
if u enter some value in field automatically other field gets populated with same copy.
You need to sign in to do that
Don't have an account?
string ids; for(contact con : trigger.new)
{
ids = con.accountid;
}
list<account> accountlist = new list<Account>([select id, name from account where id =:ids]); string accName;
for(Account a : l){ accName = a.name; }
for
(contact c : trigger.new)
{
c.lastName = accName; }
}