Oct 13, 2003 #1 roselam Technical User May 14, 2003 15 US How can you delete the last 2 characters from a field?
Oct 13, 2003 #2 gol4 Technical User Apr 4, 2000 1,174 US see the len and left functions or the mid function update mytable set filedname = left(fieldname,len(fieldname)-2) Upvote 0 Downvote
see the len and left functions or the mid function update mytable set filedname = left(fieldname,len(fieldname)-2)