Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Trim length of data to move from one DB to another 1

Status
Not open for further replies.

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

 
left(rs2!myfield, 35)

--------------------
Procrastinate Now!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top