Skip to main content
I have read numerous articles and the most simple solution seems to be to:

 

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 réponses
  1. 8 avr. 2016, 15:40
    Please use the formula like below.

     

     

    ​IMAGE(Linked_Photo_URL__c,FirstName+' '+LastName, 75, 75)

     

    Thanks

     

    Ven
0/9000