Oct 02, 2020 03:55 AM
Hi Every one i want a formula like this:
IF({TaskIcon} == BLANK(),“https://png.pngtree.com/png-clipart/20191120/original/pngtree-pen-icon-isolated-design-png-image_504...”)
TaskIcon is an Attachment field.
i want that if {TaskIcon} field is blank (No attachment in the field) then my DefaultIcon field set to a url Please Help Someone
Oct 02, 2020 04:08 AM
You’re very close, I think you just want:
IF(TaskIcon = BLANK(), "https://png.pngtree.com/png-clipart/20191120/original/pngtree-pen-icon-isolated-design-png-image_5045590.jpg")
That will return the specified URL in the formula field is TaskIcon is empty, and it will return nothing if TaskIcon has an attachment.
Oct 02, 2020 04:16 AM
Thank You so much @Nick_Dennis This works for me!!! Again thanks you