This forum has migrated to Microsoft Q&A. Visit Microsoft Q&A to post new questions.
Hi folks,
I have several 1000's of values that have 2 padded zeros at the end of each value.
13-403170300
13-4031703
Is there any way I can use a code/formula in MS ACCESS to eliminate these last two padded Zeros?
Thank you!
off the top of my head:
update myTable set myField = left(myfield, len(myfield-2)) where right(myfield,2) = "00"
-Tom. Microsoft Access MVP