Thursday 23 July 2015

Hyperlink formula is not working(Instance URL is getting appended along with the external link)

HI Guys,

This post is regarding an issue i had come across at my development work. I had to display a hyper link to navigate to some other site from a standard layout. That link varies from record to record.
So I created a text field(Brass_Link__c) to store the link and created a hyperlink formula field(Brass_Hyper_formula__c) to display "view " as link if text field is having some value.

Below is the formula field logic
IF(BRASS_Link__c <> null, HYPERLINK( BRASS_Link__c , "View"), "")

BRASS_Link__c - Stores link 



How will we solve above issue?
Its quite simple change the link from www.google.com to https://www.google.com

No comments: