How can I create a hyperlink formula field called “product catalog” product catalog in Salesforce?

44    Asked by debbieJha in Salesforce , Asked on Mar 28, 2024

 I am a Salesforce developer and I am currently working on a custom object called “product catalog”. This object contains information about various products, including their names, prices, and descriptions. I require the purpose of creating a hyperlink formula field called “Product details link” which can combine the name of the product and ID to generate a clickable link to view the details of the product. 

Answered by Deepak Mistry

 In the context of Salesforce, you can create a hyperlink formula field in Salesforce that would be able to Direct users to a custom Visualforce page with their product ID as a parameter, you can use the HYPERLINK function to combine with the URLFOR function. Here is an example of how you can write the Salesforce hyperlink formula for this scenario:-


HYPERLINK(
    URLFOR(
        ‘/apex/ProductDetailsPage’,
        Null,
        [Product_Catalog__c.Id]
    ),
    Product_Catalog__c.Name
)

When this above formula is used on the product catalog object’s record it would display a clickable link with the product name.



Your Answer

Interviews

Parent Categories