Aug 5, 2005 #1 redbase Technical User Nov 21, 2002 21 GB Hi I am moving data from one database to another and I am using the follwing method to remove commas: rs2!MyField = Replace(rs1!Reference, ",", "") I also need to reduce the field length to a max of 35 characters. How can I do this? Thank you
Hi I am moving data from one database to another and I am using the follwing method to remove commas: rs2!MyField = Replace(rs1!Reference, ",", "") I also need to reduce the field length to a max of 35 characters. How can I do this? Thank you
Aug 5, 2005 1 #2 Crowley16 Technical User Jan 21, 2004 6,931 GB left(rs2!myfield, 35) -------------------- Procrastinate Now! Upvote 0 Downvote