• TM Developer Admin
  • NEWBIE
  • 9 Points
  • Member since 2019
  • Salesforce Admin
  • TRUE Mentors

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 0
    Questions
  • 5
    Replies
Hi All,

When i am creating the dashboard component: My Top Accounts and selecting Lightning table(as shown in the screenshot). It is giving me an option to sort using columns and not rows(as demanded in the challenge). Can you help me where am i going wrong? Sort column
I am going after the Lightning Experience roll-out specialist badge and I am having issues with challenge #10. Could you give me some pointers on how to finish this challenge?  

Here is my error : The Lightning component named TrailheaDX must open a link to https://developer.salesforce.com/trailheadx/, must open in a new window (using the target attribute of ui:outputurl), and must be included in the Sales app. 

Here is my code 

Component : 

<aura:component implements="flexipage:availableForAllPageTypes" access="global" >
    <aura:attribute name="myURL" type="String" default="https://developer.salesforce.com/trailheadx/"/>
    <br/><br/>
    <ui:outputURL value="{!v.myURL}" label="TrailheaDX" target="_blank"/>
    <br/>
</aura:component>



Controller : 


({
    navigate : function(component, event, helper) {
        var address = component.find("address").get("v.myURL");
        var urlEvent = $A.get("e.force:navigateToURL");
        urlEvent.setParams({
            "url": 'https://developer.salesforce.com/trailheadx/' + address
        });
        urlEvent.fire();
    }
})




In addition, i added the app to the utility bar and the homepage of the lightning sales app. 

Could you give me any pointers on how to finish this challenge? 


User-added image

User-added image

Hi all, I am so close to finishing this process automation badge but am stuck in one area in Step 7.

I've built out my process builder as follows

User-added image
User-added image
User-added image

And my date formula as follows
 

Case(MOD(Date__c-DATE(1900,1,7),7),0,"Sunday",1,"Monday",2,"Tuesday",3,"Wednesday",4,"Thursday",5, "Friday",6,"Saturday", "")
 



Challenge Not yet complete... here's what's wrong:  The Robot Setup Day of the Week formula does not seem to be working properly. The Day of the Week should not fall on Saturday or Sunday. 

It works nicely but doesn't seem to pass, what could be up.
 

I am new to Salesforce. One of the requirement by my client is to make all the items available on classic mode to be available on lightning mode as well.

Now, we have a sidebar that has links to the system.  This sidebar is not visible in the  lightning mode.  Will it be available for the Spring 16 release and if yes, any clues on how I can get it ?
Hi ,

I am trying to upload documents to content libraries , but i am getting this error eg:- "SOURCE: 'ContentDocumentId' DESTINATION: 'ContentDocumentId' ERROR:ContentDocument ID: id value of incorrect type: Create"

Can anyone suggest what value should i give in ContentDocument ID field.


Thanks in advance
RJoshi