Jan 10, 2008 #1 bkrampe IS-IT--Management Nov 30, 2006 77 US I was wondering if there was any code to delete the 3 right letters in a string automatically when it was inputed into a report?
I was wondering if there was any code to delete the 3 right letters in a string automatically when it was inputed into a report?
Jan 10, 2008 1 #2 bdreed35 Programmer Mar 2, 2003 1,549 US Here is one way to do it: mid({table.field},1,length({table.field})-3) But that assumes that your field will always be more than 3 characters long. It is better practice to extend it a little bit to this: if length({table.field}) > 3 then mid({table.field},1,length({table.field})-3) else {table.field} ~Brian Upvote 0 Downvote
Here is one way to do it: mid({table.field},1,length({table.field})-3) But that assumes that your field will always be more than 3 characters long. It is better practice to extend it a little bit to this: if length({table.field}) > 3 then mid({table.field},1,length({table.field})-3) else {table.field} ~Brian
Jan 10, 2008 Thread starter #3 bkrampe IS-IT--Management Nov 30, 2006 77 US Thanks it worked great. Upvote 0 Downvote