in this challenge even the condition is true, it is showing like this.
#Trailhead Challenges
Eric Burté (DEVOTEAM) Forum Ambassador
Hello @Sindhu Rongali do not forget the test on Match_Billing_Address__c
trigger AccountAddressTrigger on Account (before insert, before update) {
for(Account currentAccount : Trigger.new){
If (currentAccount.Match_Billing_Address__c == true) {
currentAccount.ShippingPostalCode = currentAccount.BillingPostalCode;
}
}
}
Eric