pdiprint Posted September 24, 2009 Posted September 24, 2009 I am trying to create a salutation (Dear First Name). Sometimes the first name field only has initials and the middle name is what should be used. In all cases the middle name field is empty unless there are initials. Can you please help with a script.
esmith Posted September 24, 2009 Posted September 24, 2009 If the middle name field only has content when the first name contains initials, then you should be able to just use the following: return (Field("MIDDLE_NAME") == "") ? Field("FIRST_NAME") : FIELD("MIDDLE_NAME");
Recommended Posts
Archived
This topic is now archived and is closed to further replies.