Removing characters from a string?

C

cherman

Can anyone tell me how to remove the last 11 characters of a string?

Much thanks,
Clint
 
R

Rick Brandt

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)
 
Top