=Right(trim(YourFieldName),Len(trim(YourFieldName)) - 1)
will return your string without the leading character.
You only need the trim functions if there is a chance the string might have
leading or trailing blanks
=Left(YourFieldName,Len(YourFieldName) - 1)
will return your string without the trailing character
Regards, Sandy.
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.