1) create a url field for users to input the image address: Linked_Photo_URL__c
2) create a text field to display the image with the below formula:
IMAGE("Linked_Photo_URL__c","LinkedIn Photo", 75, 75)
It seems simple enough and it works when I manually insert the LinkedIn image url into the above formula to replace Linked_Photo_URL__c. However, it does not read the url inputted into this field and therefore does not work as expected. Any help is appreciated. Thanks.
답변 4개
Please use the formula like below. IMAGE(Linked_Photo_URL__c,FirstName+' '+LastName, 75, 75)
Thanks
Ven