• Susan Turpin
  • NEWBIE
  • 5 Points
  • Member since 2016
  • Certified Salesforce Administrator


  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 2
    Replies
I have seen several posts on linking Trailhead badges to your Success Community Profile so the badges display.
I'm in the right place, and, enter in my email address.  My email address is the same for all my accounts (WebAssessor, Trailhead, Success Community).

I keep getting an error message that it can't generate the email to me.  I have no idea why.  And, YES, I'm using the right email address.  Can someone help?
See screen shot.
STurpinScreenshot
Hi there,

I got following error on this Maintenance Cert Badge.

Challenge not yet complete... here's what's wrong:
Couldn’t find 'Find Contacts' with the correct information. Please double check the instructions.


Did you pass it?
What's wrong with my flow.
User-added image

Thanks in advance
Regards,
LinThaw
When attempting to create my Apex trigger for this Trailhead development exercise, I receive an error. I don't understand how this is possible, because the records haven't been updated, and still aren't updating.
"Challenge not yet complete... here's what's wrong:
Setting 'Match_Billing_Address__c' to false updated the records anyway. The trigger should only act when Match_Billing_Address__c is true."


Here's my code:
trigger AccountAddressTrigger on Account (before insert, before update) {

    for(Account a : Trigger.new){
        If (a.Match_Billing_Address__c = true) {
            a.ShippingPostalCode = a.BillingPostalCode;
        }   
    }

}