Removing characters from a string?

  • Thread starter Thread starter Guest
  • Start date Start date
cherman said:
Can anyone tell me how to remove the last 11 characters of a string?

Much thanks,
Clint

Left("string",number) lets you grab the left portion of a string.

Len("string") give you the length of a string.

So...

Left("string", Len("string")-11)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top