• Jen Stretch
  • NEWBIE
  • 0 Points
  • Member since 2014

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 2
    Replies
I have a Professional Edition client and just created a custom object for Referrals. I created a custom tab, but for the life of me I can not get it to show up. The custom object Development Status is Deployed. When I click Customize my Tabs, the Referrals tab is not visible. I've deleted it and recreated it without any luck.

​Any ideas?
I have a Professional Edition client and just created a custom object for Referrals. I created a custom tab, but for the life of me I can not get it to show up. The custom object Development Status is Deployed. When I click Customize my Tabs, the Referrals tab is not visible. I've deleted it and recreated it without any luck.

​Any ideas?

On the Account object I have created a formula field called Domain_Name__c . The formula I have used is this,

 

SUBSTITUTE(Website, LEFT(Website, FIND("www.", Website)), NULL)

 

Where website is a standard field on Account.

 

If Website is www.xyzdomain.com or https://www.xyzdomain.com

 

In Domain_Name__c I expected result as xyzdomain.com

 

Instead i am getting the result either as

.xyzdomain.com or ww.xyzdomain.com depending on whether the Email entered was 'www.xyzdomain.com' or 'https://www.xyzdomain.com'


Any thoughts how I can only get the text after the .   

 

e.g If, in the field Website  I enter www.salesforce.com  or  https://www.salesforce.com the result in the Domain_Name__c should be salesforce.com