in order to conect each lead from Salesforce with a record in a custom database.
Any ideas are welcome.
3 réponses
You can use the HYPERLINK() function in your formula field to do exactly what you posted:
HYPERLINK('http://mysite.com/' + Lead.Id + '/details', 'Lead.Name')
This assumes your mysite.com website has URLs that match the Salesforce record ID.