[SalesForce] Hyperlink formula field not visible in List view for lightning

I have one hyperlink formula field-

HYPERLINK("/apex/Submit_Forecast?id=" +Id & "/view", Name )

I added this field in All list view of object. It is working fine in salesforce classic but failing in Lightning. What can we do in such case?

Best Answer

This will work on Lightning as well as Classic view of Salesforce. Here is the code: HYPERLINK("/apex/Submit_Forecast?id="& Id&"&view="& Name,Name).

Related Topic