function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Timothy SmithTimothy Smith 

Field Value to Hyperlink

Opportunity -> Appointment -> Task

On the Task object, I have an Opportunity_Name field showing the name of the Opportunity.  I need to make this Lookup field, a hyperlink leading back to the Opportunity.

Considering that not every Task is attached to an Appointment, I only want this field to show if it is connected to an Appointment (ie Task for Opportunity or other object, does not show this field)
Is this possible?
AbhinavAbhinav (Salesforce Developers) 
Hi Timothy,

For making a hyperlink you can use hyperlink formula field:

Check below refernce
https://salesforce.stackexchange.com/questions/305040/create-hyperlink-formula-field-which-when-clicked-should-redirect-to-specified-r

Thanks!