I have a formula field that is going to pull in a value from a string field in a database and if the field is then put in a string indicating that the field was empty.<br><br>In the past I have done syntax as follows:<br>if {db.fldIPMgrFirst} <>"<none>" then<br> {db.fldIPMgrLast} +", " {db.fldIPMgrFirst}}<br><br>else<br> "A name was not selected"<br><br>In this case I need to handle a situation where I am looking for an empty field and deciding what to do.<br><br>I have tried to the following which does not work.<br><br>if {db.FieldName} = "" then<br> "A name was selected"<br>else<br> {db.Fieldname}<br><br>I have tried to use len() to have an if else statement based on wheither the incoming field was less then 1 and failed to figure that out<br> <br>Thanks for the help in advance.