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 ifEnd Function
See screen capture below. Just replace
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.