dschiller Posted March 8, 2013 Share Posted March 8, 2013 If I have a set of numbers like the following: 1234567890123 Is there a rule so that I can have an "A" added before and after it, like the follow: A1234567890123A Thanks Link to comment Share on other sites More sharing options...
-Lisa- Posted March 11, 2013 Share Posted March 11, 2013 Will the letter you need to add always be "A"? Is the set of numbers pulled from a field in your data file? Link to comment Share on other sites More sharing options...
ThomasLewis Posted March 11, 2013 Share Posted March 11, 2013 It may be for a barcode. If that's the case you can do that right in the text editor instead of creating a rule, just add the letters around the field name and make sure they are the same font. Otherwise here's the JavaScript for that: var txt = "A"; return txt + Field("FieldName") + txt; Link to comment Share on other sites More sharing options...
Recommended Posts