How can I have the labeling REMOVE the last 10 characters in a label?
Charles - you can use the following VBScript label expression to do that:
Function FindLabel ( [COMMENT] )
strL = (LEN([COMMENT])-10)
if strL > 0 then
FindLabel = MID([COMMENT], 1, strL)
else
FindLabel = [COMMENT]
end if
End Function
See screen capture below. Just replace