Is there anything wrong with it? Thanks in advance.trigger AccountAddressTrigger on Account (before insert, before update) {
for(Account a : Trigger.new){
If (a.Match_Billing_Address__c == true) {
a.ShippingPostalCode = a.BillingPostalCode;
}
}
}
23 answers
Hey Sumit,I just fixed the problem! For some reason the Trigger was inactive. I actived it and checked the Challenged and worked properly!Best,Dannilo