<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Linking text size through a field in ArcMap in Mapping Questions</title>
    <link>https://community.esri.com/t5/mapping-questions/linking-text-size-through-a-field-in-arcmap/m-p/1164766#M8444</link>
    <description>&lt;P&gt;You can use &lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/mapping/text/text-formatting-tags.htm" target="_blank" rel="noopener"&gt;text formatting tags&lt;/A&gt; to achieve this.&lt;/P&gt;&lt;P&gt;In your case, use the FNT formatting tag with size attribute to define the font size from the feature's attributes.&lt;/P&gt;&lt;P&gt;Here's an example Arcade label expression that uses this method:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;"&amp;lt;FNT size= '" + $feature.TEXT_SIZE + "'&amp;gt;" + $feature.Name + "&amp;lt;/FNT&amp;gt;"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 15 Apr 2022 15:33:06 GMT</pubDate>
    <dc:creator>JesseWickizer</dc:creator>
    <dc:date>2022-04-15T15:33:06Z</dc:date>
    <item>
      <title>Linking text size through a field in ArcMap</title>
      <link>https://community.esri.com/t5/mapping-questions/linking-text-size-through-a-field-in-arcmap/m-p/1135629#M8431</link>
      <description>&lt;P&gt;I'm trying to link a Field (that I created within a Layer) where it will change the size of the text just by changing it in the Attributes.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MappingBeginner12_0-1642711260980.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/31930iE22DE59937355214/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MappingBeginner12_0-1642711260980.png" alt="MappingBeginner12_0-1642711260980.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To "link" the Angle, I went to Layer Properties&amp;gt;Labels&amp;gt;Other Options &amp;gt; Placement Properties...&amp;gt;"Place label at an angle specified by a field"&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MappingBeginner12_1-1642711339915.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/31931iE50F35251A6AF22D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MappingBeginner12_1-1642711339915.png" alt="MappingBeginner12_1-1642711339915.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;And set it to my "TEXT_ANGLE" field.&lt;/P&gt;&lt;P&gt;How can I do the same for the size?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any inputs are welcomed. Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jan 2022 20:43:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/linking-text-size-through-a-field-in-arcmap/m-p/1135629#M8431</guid>
      <dc:creator>MappingBeginner12</dc:creator>
      <dc:date>2022-01-20T20:43:33Z</dc:date>
    </item>
    <item>
      <title>Re: Linking text size through a field in ArcMap</title>
      <link>https://community.esri.com/t5/mapping-questions/linking-text-size-through-a-field-in-arcmap/m-p/1135632#M8432</link>
      <description>&lt;P&gt;I believe the only way to do this is to use label classes, and have a different text size for each group.&amp;nbsp; You can use a SQL expression for each label class.&lt;/P&gt;&lt;P&gt;&lt;A href="https://desktop.arcgis.com/en/arcmap/latest/map/working-with-text/displaying-labels-using-label-classes-to-label-fea.htm" target="_self"&gt;Using label classes to label features from the same layer differently&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 20 Jan 2022 20:50:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/linking-text-size-through-a-field-in-arcmap/m-p/1135632#M8432</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2022-01-20T20:50:28Z</dc:date>
    </item>
    <item>
      <title>Re: Linking text size through a field in ArcMap</title>
      <link>https://community.esri.com/t5/mapping-questions/linking-text-size-through-a-field-in-arcmap/m-p/1164766#M8444</link>
      <description>&lt;P&gt;You can use &lt;A href="https://pro.arcgis.com/en/pro-app/latest/help/mapping/text/text-formatting-tags.htm" target="_blank" rel="noopener"&gt;text formatting tags&lt;/A&gt; to achieve this.&lt;/P&gt;&lt;P&gt;In your case, use the FNT formatting tag with size attribute to define the font size from the feature's attributes.&lt;/P&gt;&lt;P&gt;Here's an example Arcade label expression that uses this method:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;"&amp;lt;FNT size= '" + $feature.TEXT_SIZE + "'&amp;gt;" + $feature.Name + "&amp;lt;/FNT&amp;gt;"&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Apr 2022 15:33:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/mapping-questions/linking-text-size-through-a-field-in-arcmap/m-p/1164766#M8444</guid>
      <dc:creator>JesseWickizer</dc:creator>
      <dc:date>2022-04-15T15:33:06Z</dc:date>
    </item>
  </channel>
</rss>

