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
Dharma teja 22Dharma teja 22 

Comparison arguments must be compatible types: String, Boolean

Create an Apex trigger for Account that matches Shipping Address Postal Code with Billing Address Postal Code based on a custom field.
For this challenge, you need to create a trigger that, before insert or update, checks for a checkbox, and if the checkbox field is true, sets the Shipping Postal Code (whose API name is ShippingPostalCode) to be the same as the Billing Postal Code (BillingPostalCode).
The Apex trigger must be called 'AccountAddressTrigger'.
The Account object will need a new custom checkbox that should have the Field Label 'Match Billing Address' and Field Name of 'Match_Billing_Address'. The resulting API Name should be 'Match_Billing_Address__c'.
With 'AccountAddressTrigger' active, if an Account has a Billing Postal Code and 'Match_Billing_Address__c' is true, the record should have the Shipping Postal Code set to match on insert or update.


trigger AccountAddressTrigger on Account (before insert,before update) {
List<Account> acclst=new List<Account>();
  for(account a:trigger.new){
    if(a.Match_Billing_Address__c == True && a.BillingPostalCode!= null){
    a.ShippingPostalCode=a.BillingPostalCode;
        
    }

}
}

Then i will get the above error on saving the trigger .....
how tom solve this error.......
Best Answer chosen by Dharma teja 22
Alain CabonAlain Cabon
Hi,

Does your field Match_Billing_Address__c have the type Checkbox?
 

All Answers

Alain CabonAlain Cabon
Hi,

Does your field Match_Billing_Address__c have the type Checkbox?
 
This was selected as the best answer
Dharma teja 22Dharma teja 22
Thanks Alain cabon your answer is helpfull to solve this problem.....