Skip to main content

Feed

Connect with fellow Trailblazers. Ask and answer questions to build your skills and network.

This is the Spring '25 Release note title and link:

Get Improved Performance with the Enhanced Role List View: https://help.salesforce.com/s/articleView?id=release-notes.rn_improved_performance_enhanced_role_list_view.htm&release=254&type=5 

 

We like that the role page is being updated to look and act more like a lightning page, but what is the best option to make sure your roles & subordinates are aligned correctly?

8 answers
  1. Today, 5:06 PM

    @Micah Garneau's URL solution works for me. Pretty weird that the interface can't just handle this link. It's really difficult to evaluate the role hierarchy without the view. 

0/9000
5 answers
  1. Today, 5:05 PM

    HI @Nazeera MOHAMMAD

     

    We sincerely apologise for the inconvenience caused. There is an ongoing issue with the badge, This should be resolved soon and I will keep you posted as soon as it's fixed from our end.

     

    Thank you for your understanding and continued patience!

0/9000
3 answers
  1. Today, 5:05 PM
    I can't seem to find the page that you are referring to?  What page has the "Edit Access Muted" check box?
0/9000

The dropdown option is not visible for primary data model object as individual and contact point email. please let me know how to solve this issue.

I am unable to create new ruleset in Bring External Data into the Contact Page Layout Note IMPORTANT!

 

 

#Trailhead Challenges  #Agentforce

18 answers
0/9000
2 answers
0/9000
2 answers
  1. Today, 5:01 PM

    HI @Chandra kranthi Tumu

     

    I am from the Trailhead Help Team. Can you please confirm if you're still seeing an issue? If yes, please help us with the Trailhead module and share the URL of the unit along with the error screenshot if possible.

     

    Thank you!

    ++TrailheadHelpFollowUp

0/9000
2 answers
  1. Today, 5:00 PM

    Hi @Gayatri Baligar

     

    I am from the Trailhead Help Team. Can you please confirm if you're still seeing an issue? If Yes, please let us know so that we can go ahead and create a case on behalf of you and can assist accordingly. 

      

    Thank you!

    ++TrailheadHelpFollowUp

0/9000

I have a field named 'Flag' that represents what type of customer they are & have been using Static Resources & the following code: 

 

IF( 

     INCLUDES(Category__c,"Beta Tester"), 

     IMAGE("

https://syncpadllc--c.na59.visual.force.com/resource/1525876975000/blackCircle?isdtp=p1

", "black"), 

     null 

) & " " & 

IF( 

     INCLUDES(Category__c,"Billing Co"), 

     IMAGE("

https://syncpadllc--c.na59.visual.force.com/resource/1525876995000/blueCircle?isdtp=p1

", "blue"), 

     null 

) & " " & 

IF( 

     INCLUDES(Category__c,"Live User"), 

     IMAGE("

https://syncpadllc--c.na59.visual.force.com/resource/1525876995000/greenCircle?isdtp=p1

", "green"), 

     null 

) & " " & 

 

etc. 

It has been working fine until a few days ago. Now the url to the image shows a broken link. Is there a new way to do this now? 

Also, when I try to edit the static resource, there is no image loaded & when I load it & save, it doesn't stick. 

 

#Formulas  #Salesforce  #TrailblazerCommunity

0/9000

I created a report to show if any state licenses are updated each day for my contacts. I am trying to add a filter so it only shows licenses with state codes that are listed in the product state column. Does someone know if this is possible? 

Report Filter

 

 

 

#Reports & Dashboards

2 answers
  1. Today, 5:48 AM

    Hi @Kymberly Warner

     

    No, you can't directly filter a Salesforce report where one column’s value (e.g., State Code) must match a substring inside another column (e.g., Product State)

    using standard report filters alone.   

    Salesforce reports do not support

    cross-field filtering like:

    To achieve this you can Create a checkbox formula field on the record called:

    Ex - CONTAINS( Product_States__c , State_Code__c )

    Works if Product_States__c is a long text or multi-picklist

    Then, in your report:

    • Add filter: State in Product List = TRUE

    Thanks!

0/9000