Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Delete the three right letters in a string 1

Status
Not open for further replies.

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?
 
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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top