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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Remove VBTAB from the end of string

Status
Not open for further replies.

Pistol34

MIS
Nov 17, 1999
55
US
I have this string 1=10 2=20 I want to remove the VBTAB from the end. Trim won't remove it and I tried to left(string, len(string) - VBTAB), but like I thought Type Mismatch. Is there a function that I can use?

Thanks
 
You're close...
try
Code:
left(string, len(string) - 1)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top