Admin1676454018 Posted August 22, 2008 Share Posted August 22, 2008 // This rule produces a string like "Phone: 234-234-2344" from two fields: the phone label and the phone number. // If the field containing the phone number does not contain a value, the rule returns nothing. // You can then apply the "Suppress if Empty" parameter to the rule (see the FusionPro User's Guide for more information). if (Field("phone1") == "") return ""; else return Field("PhoneLabel") + Field("PhoneNumber"); Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.