=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.