The html code for space is try inserting that instead of the ^^
--- Ashley Smith Graphic Design Track 21 Graphix Inc. tel: 519-237-3838, ext. 216 toll free: 1-877-534-7337 fax: 519-237-3818 email: [EMAIL PROTECTED] website: www.track21.ca hours of operation: Monday-Friday: 8:30am - 4:30pm --- -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 02, 2007 10:33 AM To: FusionPro Users Forum Subject: [fusionpro] Insert a word space I'm required to create a rule to concatenate multiple fields. Between each field I need to add a word space. I have tried several rules and have achieved a 90% success. I am hoping for some help to complete the rule. I have done the following: Field("street") = 123 Main Street Field("street2") = Suite 123 Field("city") = Anytown ....... else return Field("street") + ' ' + Field("street2") + ' ' + Field("city"); and was returned: 123 Main StreetSuite 123Anytown I have also tried: ....... else return Field("street") + ' ' + Field("street2") + ' ' + Field("city"); and was returned: 123 Main Street Suite 123 I have also done this: ....... else return Field("street") + '^^ ' + Field("street2") + '^^ ' + Field("city"); and was returned: 123 Main Street^^ Suite 123^^ Anytown Any suggestions on how I could get just a single word space within my JS rule. Your help will be greatly appreciated Thanks, Paul -- Users of FusionPro Desktop have unlimited free email support. Contact Printable Support at [EMAIL PROTECTED] -- View FusionPro Knowledge Base, FusionPro Samples at www.printable.com/vdp/desktop.htm -- You are currently subscribed to fusionpro as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED] -- -- Note: All e-mail sent to or from this address will be received or otherwise recorded by the e-mail recipients of this forum. It is subject to archival, monitoring or review by, and/or disclosure to someone other than the recipient. Our privacy policy is posted on www.printplanet.com -- -- Users of FusionPro Desktop have unlimited free email support. Contact Printable Support at [EMAIL PROTECTED] -- View FusionPro Knowledge Base, FusionPro Samples at www.printable.com/vdp/desktop.htm -- You are currently subscribed to fusionpro as: [EMAIL PROTECTED] To unsubscribe send a blank email to [EMAIL PROTECTED] -- -- Note: All e-mail sent to or from this address will be received or otherwise recorded by the e-mail recipients of this forum. It is subject to archival, monitoring or review by, and/or disclosure to someone other than the recipient. Our privacy policy is posted on www.printplanet.com --
