Hi Espo Community,
I have been trying to figure out how to make a simple IfThen formula work.
I have a field with multiple attachments and another status field.
The formula should simply change the status field to "attachment available" if there is any attachment in the attachment field.
ifThen(attachmentid !=null, status="attachment available")
I tried attachementname as well as id.
null works well in case of other fields, but apparently no attachment in an attachment field does not translate to null in the backend.
Does anyone know what an empty attachment translate to in the backend so I can make this formula work?
I have been trying to figure out how to make a simple IfThen formula work.
I have a field with multiple attachments and another status field.
The formula should simply change the status field to "attachment available" if there is any attachment in the attachment field.
ifThen(attachmentid !=null, status="attachment available")
I tried attachementname as well as id.
null works well in case of other fields, but apparently no attachment in an attachment field does not translate to null in the backend.
Does anyone know what an empty attachment translate to in the backend so I can make this formula work?
Comment