The line I posted will remove the last character of the field, regardless of length, so you may wish to test that the last character is a U. You can use the above in an Update query, being careful to back-up first:
[tt]UPDATE tblTable SET fld = Left(fld,Len(fld)-1)[/tt]