• sure 36
  • NEWBIE
  • 10 Points
  • Member since 2017

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 8
    Replies
Quick Start: Reports & Dashboards
Create a Dashboard


Dashboards show you the most important information you want, in a way that makes the most sense to you.
In this step you'll add the report you just created to a new dashboard.
1.Click Dashboards.
2.Click the New Dashboard button.
3.Name your dashboard All Opportunities. Leave all other fields as is and click Create.
4.Click + Component.
5.For Report, select Opportunities by Stage.
6.For Display Type, select Vertical Bar Chart.
7.For Title, enter All Opportunities by Stage and click Add.
8.Click Save. Click Done.
9.The dashboard executes and displays the count of Opportunity records that are in each stage as a vertical bar chart.

After creating dashboard according to the above requirment,I am getting this error

Challenge Not yet complete... here's what's wrong: 
The title of the dashboard component is not 'All Opportunities By Stage'

first thing is we are not abele to select Vertical Bar Chart than next in the challange itasks to give the title name 'All Opportunities By Stage' but when we enter that name its shwing an error

I am getting an error in this challange,anyone cam please help me in this
this is the second trail head with the technical problem from the salesforce

Thanks you
Sure
Hi 
I have the some problem with work with scheme builder trailhead,I have done it correct
I have checked it more than 10 times ,its the same error again

Work with schema builder

Use Schema Builder to create a custom field for the Property object
DreamHouse brokers often visit properties with their clients. They want to see on the property record where the property is located. Use Schema Builder to add a street address field to the Property object.
Field data type: Text Area
Field label: Street Address
Always require a value in this field in order to save a record: Selected

Challenge Not yet complete... here's what's wrong: 
The field 'Street_Address__c' either does not exists on the Property__c object or it is not of type textarea.


I have completed all the steps listed but still getting this same result. Any ideas?

please some one help me

Thnaks
Suresh
 
Hi 
I have the some problem with work with scheme builder trailhead,I have done it correct
I have checked it more than 10 times ,its the same error again

Work with schema builder

Use Schema Builder to create a custom field for the Property object
DreamHouse brokers often visit properties with their clients. They want to see on the property record where the property is located. Use Schema Builder to add a street address field to the Property object.
Field data type: Text Area
Field label: Street Address
Always require a value in this field in order to save a record: Selected

Challenge Not yet complete... here's what's wrong: 
The field 'Street_Address__c' either does not exists on the Property__c object or it is not of type textarea.


I have completed all the steps listed but still getting this same result. Any ideas?

please some one help me

Thnaks
Suresh
 
Use Schema Builder to create a custom field for the Property object
DreamHouse brokers often visit properties with their clients. They want to see on the property record where the property is located. Use Schema Builder to add a street address field to the Property object.
Field data type: Text Area
Field label: Street Address
Always require a value in this field in order to save a record: Selected


Result: Challenge Not yet complete... here's what's wrong: 
The field 'Street_Address__c' either does not exists on the Property__c object or it is not of type textarea.


I have completed all the steps listed but still getting this same result. Any ideas?
 
Keep getting the following:  Challenge Not yet complete... here's what's wrong:
The field 'Street_Address__c' either does not exists on the Property__c object or it is not of type textarea. 

Not sure why though.  I clearly dragged "text area" over to "property".  See pic below for verification.  Any help would be appreciated.  Thanks!

User-added image
I am getting an error in challenger 2 and i am pretty sure all my headers are correct. The error is not really telling me much, can anyone help? thanks 

User-added image
hi,
i'm trying to finish the challenge "Quick Start: Reports & DashboardsCreate a Dashboard" but I'm having the following error :

"Step not yet complete... here's what's wrong:
There was an unexpected error while verifying this challenge. Usually this is due to some pre-existing configuration or code in the challenge Org. We recommend using a new Developer Edition (DE) to check this challenge. If you're using a new DE and seeing this error, please post to the developer forums and reference error id: LHRVQKEA"

Could you please advise ?
Thanks a lot.
Create an Apex class that returns an array (or list) of strings: 
Create an Apex class that returns an array (or list) of formatted strings ('Test 0', 'Test 1', ...). The length of the array is determined by an integer parameter.The Apex class must be called 'StringArrayTest' and be in the public scope.
The Apex class must have a public static method called 'generateStringArray'.
The 'generateStringArray' method must return an array (or list) of strings. Each string must have a value in the format 'Test n' where n is the index of the current string in the array. The number of returned strings is specified by the integer parameter to the 'generateStringArray' method.

MyApexClass to above Challenge:

public class StringArrayTest {
    
    public static List<string> generateStringArray(Integer n)
    {
        List<String> myArray = new List<String>();
        
        for(Integer i=0;i<n;i++)
        {
            myArray.add('Test'+i);
            System.debug(myArray[i]);
        }
        return myArray;
        
    }


It's compile and execute as per requirement in Developer console. But Traihead showing the below error:

Challenge not yet complete... here's what's wrong: 
Executing the 'generateStringArray' method failed. Either the method does not exist, is not static, or does not return the proper number of strings.

Anyhelp would be greatly appreciated. Thanks.