<?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: Arcade Text Formatting - Bold Text in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/388357#M17143</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.esri.com/migrated-users/119493"&gt;Shawn Lanning&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In ArcGIS Pro you can do this using HTML.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/511651_pastedImage_1.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let's have a look what happens under the hood. In the&amp;nbsp; configuration of the pop-up you will need to use the&amp;nbsp;Text option:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/511703_pastedImage_3.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you configure the text options, you can switch on the HTML mode and you can see that the last line&amp;nbsp;refers to the Arcade expression:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-3 jive-image" src="https://community.esri.com/legacyfs/online/511704_pastedImage_4.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the Arcade expression you loop through your species and add&amp;nbsp;html tags around the field name to make them bold and use line breaks to create new lines. Something like this:&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-4" src="https://community.esri.com/legacyfs/online/511705_pastedImage_5.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 23 Oct 2020 17:10:33 GMT</pubDate>
    <dc:creator>XanderBakker</dc:creator>
    <dc:date>2020-10-23T17:10:33Z</dc:date>
    <item>
      <title>Arcade Text Formatting - Bold Text</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/388346#M17132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm having difficulty formatting the following expression such that result will BOLD words indicated below.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I understand that the labeling expression should be&amp;nbsp;&lt;SPAN style="color: #595959; background-color: #f8f8f8;"&gt;"&amp;lt;BOL&amp;gt;" + $feature.LABELFIELD + "&amp;lt;/BOL&amp;gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #595959; background-color: #f8f8f8;"&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*Eligibility*/&lt;BR /&gt;if($feature["Comm_Eligi"]=="Eligible") {&lt;BR /&gt; if($feature["UP_Eligibl"]=="Eligible") {&lt;BR /&gt; return("Your jurisdiction is eligible under the &lt;STRONG&gt;Communities in Need&lt;/STRONG&gt; criteria and the required minimum match is " + $feature["Comm_Match"] + " percent." + Textformatting.NewLine + "Your jurisdiction also is eligible under the &lt;STRONG&gt;Underserved Populations&lt;/STRONG&gt; criteria: map your project to determine the required minimum match." )&lt;BR /&gt; } else {&lt;BR /&gt; return("Your jurisdiction is eligible under the &lt;STRONG&gt;Communities in Need&lt;/STRONG&gt; criteria and the required minimum match is " + $feature["Comm_Match"] + " percent.")&lt;BR /&gt; }&lt;BR /&gt;} else if($feature["Comm_Eligi"]=="Not Eligible") {&lt;BR /&gt; if($feature["UP_Eligibl"]=="Not Eligible") {&lt;BR /&gt; return("Your jurisdiction is not eligible for a match reduction.")&lt;BR /&gt; } else {&lt;BR /&gt; return("Your jurisdiction is eligible under the &lt;STRONG&gt;Underserved Populations&lt;/STRONG&gt; criteria: map your project to determine the required minimum match.")&lt;BR /&gt; }&lt;BR /&gt;}&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jan 2020 19:07:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/388346#M17132</guid>
      <dc:creator>ChantellKrider1</dc:creator>
      <dc:date>2020-01-30T19:07:22Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Text Formatting - Bold Text</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/388347#M17133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.esri.com/people/chantell.krider_wa_rco" target="_blank"&gt;chantell.krider_wa_rco&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I assume this would be like this:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="comment token"&gt;/*Eligibility*/&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;$feature&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Comm_Eligi"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Eligible"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;$feature&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"UP_Eligibl"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Eligible"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
        &lt;SPAN class="keyword token"&gt;return&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Your jurisdiction is eligible under the &amp;lt;BOL&amp;gt;Communities in Need&amp;lt;/BOL&amp;gt; criteria and the required minimum match is "&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Comm_Match"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;" percent."&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; Textformatting&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;NewLine &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"Your jurisdiction also is eligible under the &amp;lt;BOL&amp;gt;Underserved Populations&amp;lt;/BOL&amp;gt; criteria: map your project to determine the required minimum match."&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
    &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;else&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
        &lt;SPAN class="keyword token"&gt;return&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Your jurisdiction is eligible under the &amp;lt;BOL&amp;gt;Communities in Need&amp;lt;/BOL&amp;gt; criteria and the required minimum match is "&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; $feature&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Comm_Match"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;" percent."&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
    &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;else&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;$feature&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Comm_Eligi"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Not Eligible"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
    &lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;$feature&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"UP_Eligibl"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Not Eligible"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
        &lt;SPAN class="keyword token"&gt;return&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Your jurisdiction is not eligible for a match reduction."&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
    &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;else&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
        &lt;SPAN class="keyword token"&gt;return&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Your jurisdiction is eligible under the &amp;lt;BOL&amp;gt;Underserved Populations&amp;lt;/BOL&amp;gt; criteria: map your project to determine the required minimum match."&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
    &lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that this might work in ArcGIS Pro, but not (yet) in ArcGIS Online.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 17:50:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/388347#M17133</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2021-12-11T17:50:19Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Text Formatting - Bold Text</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/388348#M17134</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nope. The results are below.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/479960_pastedImage_1.png" /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jan 2020 20:40:06 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/388348#M17134</guid>
      <dc:creator>ChantellKrider1</dc:creator>
      <dc:date>2020-01-30T20:40:06Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Text Formatting - Bold Text</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/388349#M17135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.esri.com/people/chantell.krider_wa_rco"&gt;chantell.krider_wa_rco&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As I mentioned in my previous post, this does not work (yet) in ArcGIS Online. To create the bold text in the pop-up in ArcGIS Online will require custom HTML configuration and multiple Arcade expressions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jan 2020 20:46:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/388349#M17135</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2020-01-30T20:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Text Formatting - Bold Text</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/388350#M17136</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Okay. Thank you for the help.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jan 2020 20:49:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/388350#M17136</guid>
      <dc:creator>ChantellKrider1</dc:creator>
      <dc:date>2020-01-30T20:49:59Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Text Formatting - Bold Text</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/388351#M17137</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.esri.com/migrated-users/387072"&gt;Chantell Krider&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can show you how to do this with the custom HTML configuration in combination with 4 Arcade expressions, if that's an option for you...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jan 2020 20:57:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/388351#M17137</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2020-01-30T20:57:01Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Text Formatting - Bold Text</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/388352#M17138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes. That would be awesome!&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jan 2020 20:59:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/388352#M17138</guid>
      <dc:creator>ChantellKrider1</dc:creator>
      <dc:date>2020-01-30T20:59:48Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Text Formatting - Bold Text</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/388353#M17139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.esri.com/migrated-users/387072" target="_blank"&gt;Chantell Krider&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me first explain the sample dataset I created. I have 4 points and added the Com_Eligi and UP_Eligibl values:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/479966_pastedImage_2.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The attribute table looks like this:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/479967_pastedImage_4.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can see that I have 4 "Eligibility" fields added, containing "block" or "none". Those are the results of the Arcade expressions listed below:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="comment token"&gt;// Eligibility1:&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;$feature&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Comm_Eligi"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Eligible"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;&amp;amp;&amp;amp;&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;$feature&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"UP_Eligibl"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Eligible"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
        &lt;SPAN class="keyword token"&gt;return&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"block"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;else&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
        &lt;SPAN class="keyword token"&gt;return&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"none"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="comment token"&gt;// Eligibility2:&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;$feature&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Comm_Eligi"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Eligible"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;&amp;amp;&amp;amp;&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;$feature&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"UP_Eligibl"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Not Eligible"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
        &lt;SPAN class="keyword token"&gt;return&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"block"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;else&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
        &lt;SPAN class="keyword token"&gt;return&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"none"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;‍‍‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="comment token"&gt;// Eligibility3:&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;$feature&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Comm_Eligi"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Not Eligible"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;&amp;amp;&amp;amp;&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;$feature&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"UP_Eligibl"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Not Eligible"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
        &lt;SPAN class="keyword token"&gt;return&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"block"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;else&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
        &lt;SPAN class="keyword token"&gt;return&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"none"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;‍‍‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="comment token"&gt;// Eligibility4:&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;$feature&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Comm_Eligi"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Not Eligible"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;&amp;amp;&amp;amp;&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;$feature&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"UP_Eligibl"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;&lt;SPAN class="operator token"&gt;==&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"Eligible"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
        &lt;SPAN class="keyword token"&gt;return&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"block"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt; &lt;SPAN class="keyword token"&gt;else&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;
        &lt;SPAN class="keyword token"&gt;return&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"none"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;;&lt;/SPAN&gt;
&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;‍‍‍‍‍‍‍‍‍‍‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Those will appear numbered as 0 to 3 in the list of Arcade expressions in the pop-up configuration:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-3 jive-image" height="244" src="https://community.esri.com/legacyfs/online/479968_pastedImage_5.png" width="260" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The next part is the configuration of the custom HTML pop-up:&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-4" height="159" src="https://community.esri.com/legacyfs/online/479969_pastedImage_6.png" width="274" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Next hit the green "CONFIGURE" button and activate the "View HTML Source" in the Custom Attribute Display:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-5 jive-image" height="282" src="https://community.esri.com/legacyfs/online/479970_pastedImage_7.png" width="465" /&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As HTML source you should copy and paste the following:&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="token tag"&gt;&lt;SPAN class="token tag"&gt;&lt;SPAN class="punctuation token"&gt;&amp;lt;&lt;/SPAN&gt;span&lt;/SPAN&gt;&lt;SPAN class="style-attr language-css token"&gt;&lt;SPAN class="attr-name token"&gt; &lt;SPAN class="attr-name token"&gt;style&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;="&lt;/SPAN&gt;&lt;SPAN class="attr-value token"&gt;&lt;SPAN class="selector token"&gt;display:&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;expression/expr0&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;Your jurisdiction is eligible under the &lt;SPAN class="token tag"&gt;&lt;SPAN class="token tag"&gt;&lt;SPAN class="punctuation token"&gt;&amp;lt;&lt;/SPAN&gt;b&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;Communities in Need&lt;SPAN class="token tag"&gt;&lt;SPAN class="token tag"&gt;&lt;SPAN class="punctuation token"&gt;&amp;lt;/&lt;/SPAN&gt;b&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt; criteria and the required minimum match is {Comm_Match} percent. &lt;SPAN class="token tag"&gt;&lt;SPAN class="token tag"&gt;&lt;SPAN class="punctuation token"&gt;&amp;lt;&lt;/SPAN&gt;br&lt;/SPAN&gt; &lt;SPAN class="punctuation token"&gt;/&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;Your jurisdiction also is eligible under the &lt;SPAN class="token tag"&gt;&lt;SPAN class="token tag"&gt;&lt;SPAN class="punctuation token"&gt;&amp;lt;&lt;/SPAN&gt;b&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;Underserved Populations&lt;SPAN class="token tag"&gt;&lt;SPAN class="token tag"&gt;&lt;SPAN class="punctuation token"&gt;&amp;lt;/&lt;/SPAN&gt;b&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt; criteria: map your project to determine the required minimum match.&lt;SPAN class="token tag"&gt;&lt;SPAN class="token tag"&gt;&lt;SPAN class="punctuation token"&gt;&amp;lt;/&lt;/SPAN&gt;span&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;SPAN class="token tag"&gt;&lt;SPAN class="token tag"&gt;&lt;SPAN class="punctuation token"&gt;&amp;lt;&lt;/SPAN&gt;span&lt;/SPAN&gt;&lt;SPAN class="style-attr language-css token"&gt;&lt;SPAN class="attr-name token"&gt; &lt;SPAN class="attr-name token"&gt;style&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;="&lt;/SPAN&gt;&lt;SPAN class="attr-value token"&gt;&lt;SPAN class="selector token"&gt;display:&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;expression/expr1&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;Your jurisdiction is eligible under the &lt;SPAN class="token tag"&gt;&lt;SPAN class="token tag"&gt;&lt;SPAN class="punctuation token"&gt;&amp;lt;&lt;/SPAN&gt;b&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;Communities in Need&lt;SPAN class="token tag"&gt;&lt;SPAN class="token tag"&gt;&lt;SPAN class="punctuation token"&gt;&amp;lt;/&lt;/SPAN&gt;b&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt; criteria and the required minimum match is {Comm_Match} percent.&lt;SPAN class="token tag"&gt;&lt;SPAN class="token tag"&gt;&lt;SPAN class="punctuation token"&gt;&amp;lt;/&lt;/SPAN&gt;span&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;SPAN class="token tag"&gt;&lt;SPAN class="token tag"&gt;&lt;SPAN class="punctuation token"&gt;&amp;lt;&lt;/SPAN&gt;span&lt;/SPAN&gt;&lt;SPAN class="style-attr language-css token"&gt;&lt;SPAN class="attr-name token"&gt; &lt;SPAN class="attr-name token"&gt;style&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;="&lt;/SPAN&gt;&lt;SPAN class="attr-value token"&gt;&lt;SPAN class="selector token"&gt;display:&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;expression/expr2&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;Your jurisdiction is not eligible for a match reduction.&lt;SPAN class="token tag"&gt;&lt;SPAN class="token tag"&gt;&lt;SPAN class="punctuation token"&gt;&amp;lt;/&lt;/SPAN&gt;span&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;SPAN class="token tag"&gt;&lt;SPAN class="token tag"&gt;&lt;SPAN class="punctuation token"&gt;&amp;lt;&lt;/SPAN&gt;span&lt;/SPAN&gt;&lt;SPAN class="style-attr language-css token"&gt;&lt;SPAN class="attr-name token"&gt; &lt;SPAN class="attr-name token"&gt;style&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;="&lt;/SPAN&gt;&lt;SPAN class="attr-value token"&gt;&lt;SPAN class="selector token"&gt;display:&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;{&lt;/SPAN&gt;expression/expr3&lt;SPAN class="punctuation token"&gt;}&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;"&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;Your jurisdiction is eligible under the &lt;SPAN class="token tag"&gt;&lt;SPAN class="token tag"&gt;&lt;SPAN class="punctuation token"&gt;&amp;lt;&lt;/SPAN&gt;b&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;Underserved Populations&lt;SPAN class="token tag"&gt;&lt;SPAN class="token tag"&gt;&lt;SPAN class="punctuation token"&gt;&amp;lt;/&lt;/SPAN&gt;b&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt; criteria: map your project to determine the required minimum match.&lt;SPAN class="token tag"&gt;&lt;SPAN class="token tag"&gt;&lt;SPAN class="punctuation token"&gt;&amp;lt;/&lt;/SPAN&gt;span&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;&amp;gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The result should be like this:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-6 jive-image" src="https://community.esri.com/legacyfs/online/479971_pastedImage_8.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 17:50:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/388353#M17139</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2021-12-11T17:50:22Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Text Formatting - Bold Text</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/388354#M17140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Impressive! I'm guessing I'll need to pre-populate the attribute table according to the "blocks" vs. "none". Is that correct? Thank you! I'll give it a try.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jan 2020 22:05:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/388354#M17140</guid>
      <dc:creator>ChantellKrider1</dc:creator>
      <dc:date>2020-01-30T22:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Text Formatting - Bold Text</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/388355#M17141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.esri.com/people/chantell.krider_wa_rco"&gt;chantell.krider_wa_rco&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You do not have to change your data and add fields. The ones you are seeing are "virtual" fields created by the Arcade expressions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Jan 2020 22:20:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/388355#M17141</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2020-01-30T22:20:56Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Text Formatting - Bold Text</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/388356#M17142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Xander (or anyone with an idea)&amp;nbsp;any thoughts on how I could bold portions of an Arcade Expression that are being by a for loop? Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; background-color: #f7f7f7;"&gt;Species: American Kestrel&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="" style="color: #333333; background-color: #f7f7f7;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #333333; background-color: #f7f7f7;"&gt;Taxa: Bird&lt;/SPAN&gt;&lt;SPAN class="" style="color: #333333; background-color: #f7f7f7;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; background-color: #f7f7f7;"&gt;Occurrence Potential: Year Round&lt;/SPAN&gt;&lt;SPAN class="" style="color: #333333; background-color: #f7f7f7;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="" style="color: #333333; background-color: #f7f7f7;"&gt; &lt;/SPAN&gt;&lt;SPAN class="" style="color: #333333; background-color: #f7f7f7;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #333333; background-color: #f7f7f7;"&gt;Species: Chestnut-collard Longspur&lt;/SPAN&gt;&lt;SPAN class="" style="color: #333333; background-color: #f7f7f7;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; background-color: #f7f7f7;"&gt;Taxa: Bird&lt;/SPAN&gt;&lt;SPAN class="" style="color: #333333; background-color: #f7f7f7;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; background-color: #f7f7f7;"&gt;Occurrence Potential: Winter Resident&lt;/SPAN&gt;&lt;SPAN class="" style="color: #333333; background-color: #f7f7f7;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; background-color: #f7f7f7;"&gt;I have the loop working but would like to Bold the Labels so it looks like:&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="color: #3d3d3d;"&gt;&lt;SPAN style="color: #333333; background-color: #f7f7f7;"&gt;&lt;STRONG&gt;Species&lt;/STRONG&gt;: American Kestrel&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #3d3d3d;"&gt;&lt;SPAN class="" style="color: #333333; background-color: #f7f7f7;"&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #333333; background-color: #f7f7f7;"&gt;&lt;STRONG&gt;Taxa&lt;/STRONG&gt;: Bird&lt;/SPAN&gt;&lt;SPAN class="" style="color: #333333; background-color: #f7f7f7;"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #3d3d3d;"&gt;&lt;SPAN style="color: #333333; background-color: #f7f7f7;"&gt;&lt;STRONG&gt;Occurrence&lt;/STRONG&gt; &lt;STRONG&gt;Potential&lt;/STRONG&gt;: Year Round&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="color: #3d3d3d;"&gt;&lt;SPAN style="color: #333333; background-color: #f7f7f7;"&gt;Since it is all being built by via a string variable inside the loop I don't believe the example above will work, and so far I haven't had any brilliant ideas for a solution.&amp;nbsp; Thoughts?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Oct 2020 16:10:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/388356#M17142</guid>
      <dc:creator>ShawnLanning</dc:creator>
      <dc:date>2020-10-23T16:10:23Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Text Formatting - Bold Text</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/388357#M17143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.esri.com/migrated-users/119493"&gt;Shawn Lanning&lt;/A&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In ArcGIS Pro you can do this using HTML.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.esri.com/legacyfs/online/511651_pastedImage_1.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let's have a look what happens under the hood. In the&amp;nbsp; configuration of the pop-up you will need to use the&amp;nbsp;Text option:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-2 jive-image" src="https://community.esri.com/legacyfs/online/511703_pastedImage_3.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you configure the text options, you can switch on the HTML mode and you can see that the last line&amp;nbsp;refers to the Arcade expression:&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-3 jive-image" src="https://community.esri.com/legacyfs/online/511704_pastedImage_4.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the Arcade expression you loop through your species and add&amp;nbsp;html tags around the field name to make them bold and use line breaks to create new lines. Something like this:&lt;/P&gt;&lt;P&gt;&lt;IMG class="jive-image image-4" src="https://community.esri.com/legacyfs/online/511705_pastedImage_5.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Oct 2020 17:10:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/388357#M17143</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2020-10-23T17:10:33Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Text Formatting - Bold Text</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/1039848#M38900</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/1108"&gt;@XanderBakker&lt;/a&gt;&amp;nbsp;Are there plans to add this functionality to ArcGIS Online?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Mar 2021 17:21:47 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/1039848#M38900</guid>
      <dc:creator>AllisonMuise2</dc:creator>
      <dc:date>2021-03-23T17:21:47Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Text Formatting - Bold Text</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/1040619#M38979</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/216925"&gt;@AllisonMuise2&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Sorry for the delay. I am sure we will have this functionality in the future, but unfortunately, I don't have an ETA.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Mar 2021 15:32:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/1040619#M38979</guid>
      <dc:creator>XanderBakker</dc:creator>
      <dc:date>2021-03-25T15:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Text Formatting - Bold Text</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/1040630#M38981</link>
      <description>&lt;P&gt;If you need a use case: I'm building a popup for a tax parcels layer that contains geometry but relatively few attributes. Information on single family residences and land characteristics of that parcel are stored in stand-alone tables that each have dozens of attributes. I'd like to be able to include a table of SFR chars and a table of land chars in the tax parcel popup (or even control bolding and whitespace between label and value).&lt;/P&gt;&lt;P&gt;Currently, to build this structure, I need to query each table for each attribute individually which is prohibitively slow for this number of attributes. If I could return the formatting with the arcade expression, this could be done with a single query to each table.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Mar 2021 15:51:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/1040630#M38981</guid>
      <dc:creator>AllisonMuise2</dc:creator>
      <dc:date>2021-03-25T15:51:01Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Text Formatting - Bold Text</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/1133729#M50006</link>
      <description>&lt;P&gt;This is great for popups, but any way to do this in labels? Here is what I have in Pro, which works fine:&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;"&amp;lt;BOL&amp;gt;" + $feature.FAC_TYPE + "&amp;lt;/BOL&amp;gt;" + ' – ' + $feature.FAC_NAME&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In ArcGIS Online, that shows up like this:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="dcafdg_0-1642128835830.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/31487iA73860B0E64FC6FE/image-size/large?v=v2&amp;amp;px=999" role="button" title="dcafdg_0-1642128835830.png" alt="dcafdg_0-1642128835830.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;If I change it to the HTML standard of&amp;nbsp;&lt;FONT face="courier new,courier" color="#993300"&gt;&amp;lt;B&amp;gt;&lt;/FONT&gt; and &lt;FONT face="courier new,courier" color="#993300"&gt;&amp;lt;/B&amp;gt;&lt;/FONT&gt;, I just get those literal strings, just like above, but missing the "OL".&amp;nbsp;&lt;/P&gt;&lt;P&gt;I thought Arcade was supposed to work across all platforms.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Jan 2022 02:58:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/1133729#M50006</guid>
      <dc:creator>davedoesgis</dc:creator>
      <dc:date>2022-01-14T02:58:15Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Text Formatting - Bold Text</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/1172579#M55007</link>
      <description>&lt;P&gt;Any update on html formatting within an arcade expression in AGOL?&lt;/P&gt;&lt;P&gt;With the expression below, I'd like to make the fields "TIME:", "HR:", etc... be in bold.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;// Access table as a FeatureSet&lt;BR /&gt;var portal = Portal("&lt;A href="https://www.arcgis.com" target="_blank"&gt;https://www.arcgis.com&lt;/A&gt;")&lt;BR /&gt;var vitals = FeatureSetByPortalItem(portal,&lt;BR /&gt;"4bdfd61b80b44a1ea57a299f4f09b176", 1, ['vital_time','vital_pulse','vital_rr','vital_bp','vital_sp','vital_pupil','vital_csm','vital_cardiac','vital_eyes','vital_verbal','vital_motor','vital_gcs'])&lt;/P&gt;&lt;P&gt;// Filter related features by using a common attribute&lt;BR /&gt;var globalid = $feature.globalid&lt;BR /&gt;var filterStatement = 'parentglobalid = @globalid'&lt;/P&gt;&lt;P&gt;// Related features as a variable&lt;BR /&gt;var relatedData = Filter(vitals, filterStatement)&lt;/P&gt;&lt;P&gt;// Sort related features by oldest to newest&lt;BR /&gt;var relatedDataSorted = OrderBy(relatedData, 'CreationDate')&lt;/P&gt;&lt;P&gt;// Build the pop-up string by iterating through all related features&lt;BR /&gt;var popupString = ''&lt;BR /&gt;for (var f in relatedDataSorted)&lt;BR /&gt;{&lt;BR /&gt;popupString += "TIME: " + DefaultValue(f.vital_time,'_')&lt;BR /&gt;+ " HR: " + DefaultValue(f.vital_pulse,'_')&lt;BR /&gt;+ " BP: " + DefaultValue(f.vital_bp,'_')&lt;BR /&gt;+ " RR: " + DefaultValue(f.vital_rr,'_')&lt;BR /&gt;+ " SPO2: " + DefaultValue(f.vital_sp,'_')&lt;BR /&gt;+ " PUPILS: " + DefaultValue(f.vital_pupil,'_')&lt;BR /&gt;+ " CSM: " + DefaultValue(f.vital_csm,'_')&lt;BR /&gt;+ TextFormatting.NewLine + "CARDIAC MONITOR: " + DefaultValue(f.vital_cardiac,'_')&lt;BR /&gt;+ TextFormatting.NewLine + "EYES: " + DefaultValue(f.vital_eyes,'_')&lt;BR /&gt;+ " VERBAL: " + DefaultValue(f.vital_verbal,'_')&lt;BR /&gt;+ " MOTOR: " + DefaultValue(f.vital_motor,'_')&lt;BR /&gt;+ " GCS SCORE: " + DefaultValue(f.vital_gcs,'_')&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;DefaultValue(popupString, 'No Vitals Taken')&lt;/P&gt;</description>
      <pubDate>Tue, 10 May 2022 20:23:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/1172579#M55007</guid>
      <dc:creator>ryanEvanczyk</dc:creator>
      <dc:date>2022-05-10T20:23:49Z</dc:date>
    </item>
    <item>
      <title>Re: Arcade Text Formatting - Bold Text</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/1209297#M59481</link>
      <description>&lt;P&gt;I would like to see this functionality extended to ArcGIS Pro tables. My use case:&lt;/P&gt;&lt;P&gt;-I have a road map with index grid and would like to bold attributes that only contain 1 character (A, B, C etc.) to make my 'legend' a little easier to navigate&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SarahHartholt_1-1662144304198.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/50301i8992122A885BC040/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SarahHartholt_1-1662144304198.png" alt="SarahHartholt_1-1662144304198.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Sep 2022 18:45:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/arcade-text-formatting-bold-text/m-p/1209297#M59481</guid>
      <dc:creator>SarahHartholt</dc:creator>
      <dc:date>2022-09-02T18:45:38Z</dc:date>
    </item>
  </channel>
</rss>

