Can anyone tell me how to remove the last 11 characters of a string? Much thanks, Clint
C cherman Mar 16, 2007 #1 Can anyone tell me how to remove the last 11 characters of a string? Much thanks, Clint
R Rick Brandt Mar 16, 2007 #2 cherman said: Can anyone tell me how to remove the last 11 characters of a string? Much thanks, Clint Click to expand... 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)
cherman said: Can anyone tell me how to remove the last 11 characters of a string? Much thanks, Clint Click to expand... 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)