Skip to main content Join us at TDX in San Francisco or on Salesforce+ on March 5-6 for the Developer Conference for the AI Agent Era. Register now.

#Trailhead Challenges2,425 discussing

Hands-on challenges are the “secret sauce” of Trailhead. Before searching for solutions to superbadge challenges, review the Salesforce Certification Program Agreement and Policies.

Hello,

 

I am trying to complete the superbadge Lightning Implementation Specialist but on challenge 4, I bumped into this issue where I cannot enable the 'Allow Access' for Optimizer in setup. The button is shown in the optimizer configuration page but nothing happens whenever I clicked the button, no prompt is showing or any screen changes.

 

I find this very odd because I am already a System Admin user, browser's pop-up is also enabled, tried it as well on edge browser but all of these doesn't make any positive result.

 

Anyone encountered this issue? Thank you

'The Salesforce Optimizer is not enabled in this org.' in Lightning Implementation Specialist

 

Screenshot 2024-06-23 161353.jpg

 

#Trailhead Challenges

0/9000

Hi Team,

I'm facing an issue with the "Rated Accounts by State" report in the challenge. Even though I have set everything up exactly as required, I keep getting the error:

🚨 "Challenge Not yet complete... here's what's wrong: The 'Rated Accounts by State' report does not show the correct level of detail."

Here’s how I have configured the report:

  • Group Rows: Billing State/Province
  • Group Columns: Rating
  • Columns: Account Name, Type
  • Filters:
    • Show Me: All Accounts
    • Created Date: All Time
    • Type: Equals "Residential"

I also verified that the values are correctly set (Record Count for state and account rating) and even compared it with a YouTube tutorial where the exact same setup worked. Despite this, the error persists, and I’m really stuck.

Has anyone else faced this issue or knows what could be causing it? I’d really appreciate any help since I can’t move forward without resolving this.

Thanks in advance! 

Business Administration Specialist 4  Create reports and dashboards

 

 

 

#Trailhead Challenges

6 answers
0/9000

I did everything existing post suggested but could not solve this problem. Is there anyone who could help me out? 

 

#Trailhead Challenges

9 answers
  1. Feb 12, 7:28 AM

    Thanks for your help @Mykhailo Vdovychenko it now says "The 'Pipeline Matrix Report Current FQ' report does not appear to have the bucket field configured correctly. "  

    Thanks for your help it now says

     

    Trailhead.PNG 

0/9000
8 answers
  1. Eric Burté (DEVOTEAM) Forum Ambassador
    Feb 9, 1:51 PM

    Hello @Divya Smart bridge

     make sure you have saved the report, in the correct folder, with proper fields / filters, and correct name (no missing or extra character). Make also sure that you verify the challenge in the playground where you have configured and saved the report.  

    PS : this is a duplicate post of

    https://trailhead.salesforce.com/trailblazer-community/feed/0D5KX00000KDGom0AH. please leverage tags and mentions rather than pasting the same post on different topics groups.

    Eric

0/9000
5 answers
  1. Eric Burté (DEVOTEAM) Forum Ambassador
    Feb 9, 1:51 PM

    Hello @Divya Smart bridge

    make sure you have saved the report, in the correct folder, with proper fields / filters, and correct name (no missing or extra character). Make also sure that you verify the challenge in the playground where you have configured and saved the report. 

    Eric

0/9000
Can anyone help me with this? I already configured the access settings 'SolarBot Dashboards'. I used Public Groups for the 'All Internal Users' and 'Reports and Dashboards Administrators' but it's still Challenge Not yet complete...

 

 

User-added image
24 answers
  1. Andrew Russo (BACA Systems) Forum Ambassador
    May 16, 2023, 5:54 PM

    Hi,

    Super badges are part of the credentialing program. Please see the below linked help article and if you need more help log a case with trailhead support. 

    To log a case click HERE then on the right side of the screen click "Log a Ticket"

    Please complete this module if you have any questions: https://trailhead.salesforce.com/en/content/learn/modules/superbadge-cred-security-quick-look/superbadges-and-the-salesforce-credentialing-program

    The Salesforce Certification Program Agreement and Policies applies to superbadges.

    Participants in the Salesforce Credentialing Program should:

    • Search for general resources and use help articles to complete superbadges
    • Prepare for superbadges by completing the prerequisite content and carefully reviewing the Help article for the superbadge. Links to Help articles are found in the scenario of each superbadge and are all listed below.
    • Submit a case with the Credential Security Team if you see any activity that undermines credential security

    Salesforce Credentialing Program participants are prohibited from:

    • Sharing, using, or requesting configured solutions, elements of solutions, metadata, or packages to solve any superbadge challenge
    • Attempting to share or transfer any Salesforce credential
    • Completing an exam or superbadge on another individual's behalf
    • Working on a superbadge solution in direct collaboration in a shared/group setting
    • Sharing or posting screenshots or walk-throughs of completed solutions
    • Sharing login credentials to a superbadge-solution configured Salesforce org
    • Engaging in any behavior that violates the Salesforce Credential and Certification Program Agreement
0/9000
4 answers
  1. Divya Chauhan (Kcloud Technologies) Forum Ambassador
    Feb 7, 7:02 AM

    Hello@Jagruti Khutale,

    • make sure report name is correct
    • make sure you have configured the filter correctly
    • make sure you have saved the report
    • make sure you are checking the challenge in correct org
0/9000

In Trailhead, while verifying the Super Badge challenge 3 in CRM Analytics, getting the below error.

Dataset used for this challenge is attached here for reference.

 

CRM Analytics and Einstein Discovery Insights Specialist Challenge 3 Description:

Display Churn by Tenure

Create a ratings chart that displays churn by tenure. Configure the chart to filter by length of tenure.

Error Encountered While Verifying the challenge:

Challenge Not yet complete... here's what's wrong:

We can't confirm the binding syntax for the Churn Tenure chart. Check that toggle widget selections are updating the Churn Tenure chart. Confirm the binding is using the correct step.

 

Binding Query used in Ratings chat:

q = load "Beattie_Subs";

q = filter q by {{row(static_2.selection,[0],["min","max"]).asRange ("Tenure")}};

q_B = filter q by 'Churn' == "Yes";

result = group q by all full, q_B by all;

result = foreach result generate (count(q_B) / count(q))*100 as 'churnRate';

 

Toggle Widget Query:

{

    "broadcastFacet": true,

    "columns": {

        "min": {

            "type": "string"

        },

        "Length of Tenure": {

            "type": "string"

        },

        "max": {

            "type": "string"

        },

        "Tenure Length": {

            "type": "string"

        }

    },

    "label": "Tenure Length",

    "selectMode": "single",

    "type": "staticflex",

    "values": [

        {

            "Tenure Length": "High Risk",

            "min": 1,

            "max": 12,

            "Length of Tenure": "1 to 12 months"

        },

        {

            "Tenure Length": "Medium Risk",

            "min": 13,

            "max": 24,

            "Length of Tenure": "13 to 24 months"

        },

        {

            "Tenure Length": "Low Risk",

            "min": 25,

            "max": 36,

            "Length of Tenure": "25 to 36 months"

        }

    ]

}

For quick reference, Custom Definition of Toggle Widget is here below.

Cannot Verify Super Badge Challenge 3 and Encountering ErrorComplete Requirement:

Display Churn by Tenure

Beattie Media’s wheeling and dealing to make their newer subscribers happy has also come at a cost to their loyal subscribers, who were there at the beginning. Arnas and Olivia are dismayed to hear their longtime subscribers are feeling ignored and starting to lose their sense of loyalty. These once-steadfast subscribers are also cancelling their services for better deals. Arnas and Olivia would like to monitor churn within subscriber tenure. For example, measure the number of subscribers who’ve been with them for over 2 years and cancelled. They’re asking for a churn by tenure chart to help them be more strategic and targeted for all their subscribers.

  1. Locate the dashboard section labeled CHALLENGE 2 and replace it with a chart widget.
  2. Add Churn Tenure as the query name.
  3. Add a calculation that divides the number of churned subscribers (Churn = "Yes") by the total number of subscribers. Churned subscribers will be the numerator, total subscribers will be the denominator.
  4. Add a toggle widget above the Churn Tenure chart.
  5. Add Tenure Length as the display label.
  6. Add the following custom definition to the widget.

Tenure Length (Display)    |Length of Tenure (Value)

High Risk | 1 to 12 months

Medium Risk | 13 to 24 months

Low Risk | 25 to 36 months

Bind the Tenure Length toggle widget to the Churn Tenure chart and have it filter the Tenure field. Your solution should look similar to the example below.

Calculate Subscriber Acquisition Costs

 

#Trailhead Challenges  #Reports & Dashboards

1 answer
  1. Divya Chauhan (Kcloud Technologies) Forum Ambassador
    Dec 31, 2024, 4:32 AM

    Hello, 

    • Super badges are part of the credentialing program,
    • Please make sure you Signed up for a free org with special configuration
    • Please check prerequisite
    •  Please Check out the Superbadge Challenge Help article.
0/9000

In the upper right of the preview section, enable the Update Preview Automatically toggle to see a preview with the details of all the opportunities.

 Module: Quick Start Report & Dashboards --> Configure the Report 

 

#Trailhead Challenges

0/9000