Tagged Questions
1
vote
2answers
160 views
How to Add Values together using FindLabel (VBscript) function of ArcMap Label Expression?
I'm wanting to add together values from multiple fields in shp file and display the result as a the label here's what I'm looking at right now:
if ( [SwineGesBo] + [SwineSowLt] > 0) then output = ...
3
votes
2answers
785 views
Remove first n characters in label using ArcGIS 10 label expression builder with VBscript
I have a planning cadastre dataset. It has the type of plan (DP, RP or SP) and then the plan number, thusly:
DP123456
RP1248590000
SP3855
etc...
I want to make a label in the expression builder in ...
6
votes
1answer
195 views
ArcMap 10: How do I escape certain characters when labeling?
I am labeling certain Oil & Gas areas by Operator in ArcMap 10, using this expression:
"" & [OPERATOR] & "" & vbNewline & "" & [UNIT_NAME] & ""
The only problem is ...