Allow formula fields that result an image to display the image in the Attributes section on the CS360.
We have an account formula field that displays a flag that reps want to see in the attributes section of gainsight. However, when in Gainsight it displays as:
<img src="/img/samples/flag_green.gif" alt="green" border="0"/>
Here is the formula:
IF(
SP_Dashboard_Beta_Test_SPID__c = TRUE,
IMAGE("/img/samples/flag_green.gif", "green"),
null
)
It would be nice if the field could display as the image.
<img src="/img/samples/flag_green.gif" alt="green" border="0"/>
Here is the formula:
IF(
SP_Dashboard_Beta_Test_SPID__c = TRUE,
IMAGE("/img/samples/flag_green.gif", "green"),
null
)
It would be nice if the field could display as the image.