You need to sign in to do that
Don't have an account?
Hitesh Khanna
I want to display an image if both fields ("abc__c" and "xyz__c") are populated. even if one of them is blank image should not be displayed.
I wrote this. But its not wokrking if one of the fields is blank(but working if both are blank). what changes should i make ?
IF( AND(NOT(ISBLANK( abc__c )) , NOT(ISBLANK( xyz__c ))) , IMAGE("/servlet/servlet.ImageServer?id=0150R000001JUkT&oid="+$Organization.Id, "icon" ,24, 128), "" )
In you formula field where you placing that logic, below there is an option
I hope this help.
All Answers
Do not see any issue with the code? What is the data type of the fields?
Currency fields
Hi,
Can you try like this
Please mark it as the best answer if it worksNo its not working
In you formula field where you placing that logic, below there is an option
I hope this help.