Labels in tabular or grid format?

1019
1
03-21-2012 02:11 PM
RyanLiddell
New Contributor
Is it possible to create labels in a tabular or grid format using ArcGIS system tools? As an example, imagine a point feature class with fields [SampleID] and [Value]. It would be great to create callout labels for each feature that look like the attached JPG. [ATTACH=CONFIG]12910[/ATTACH]
Tags (2)
0 Kudos
1 Reply
AlexeyTereshenkov
Regular Contributor III
Ryan,

To create a grid of values is rather simple by using the VBScript:

"Value:" & vbTab & [OrderName1] & vbnewLine & "Order:" & vbTab & [HospitalAd] 


Which will result in:

Value: Mark (Home)
Order: 3727 Howe St

However, to create borders around them and such you'd need to use more advanced logic of VBScript or JScript as shown in this article: http://www.esri.com/news/arcuser/1104/files/vbscript_label.pdf

You can also try to use some workarounds by using the formatting tags like SUP and UND to create lines over the block of the values and under as well as "|" symbols appended in the beginning of the label's row and in the end. This will result in something like:

___________________
|Value: | Mark (Home) |
|Order: | 3727 Howe St |
____________________

http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#/Formatting_tags_available_in_ArcMap/00...
0 Kudos