<?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: &amp;lt;UND&amp;gt;&amp;lt;/UND&amp;gt; Tags work inconsistently in Arcade in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/lt-und-gt-lt-und-gt-tags-work-inconsistently-in/m-p/1682135#M101638</link>
    <description>&lt;P&gt;What else is in the label? If anything in the label contains those special characters, then the formatting tags will break. For example, this code&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var ownlab1 = $feature.Site;
var other = "This &amp;amp; that";
"&amp;lt;UND&amp;gt;" + Text(ownlab1) + "&amp;lt;/UND&amp;gt;\n" + other;&lt;/LI-CODE&gt;&lt;P&gt;results in this label&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2026-02-04_13-27-31.PNG" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/147900iD27C921F67BCB465/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2026-02-04_13-27-31.PNG" alt="2026-02-04_13-27-31.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;This code fixes it&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var ownlab1 = $feature.Site;
var other = Replace("This &amp;amp; that", "&amp;amp;", "&amp;amp;amp;");
'&amp;lt;UND&amp;gt;'+Text(ownlab1)+'&amp;lt;/UND&amp;gt;\n' + other;&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2026-02-04_13-32-29.PNG" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/147903iC0FEF8FE097EEF0C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2026-02-04_13-32-29.PNG" alt="2026-02-04_13-32-29.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 04 Feb 2026 18:43:26 GMT</pubDate>
    <dc:creator>KenBuja</dc:creator>
    <dc:date>2026-02-04T18:43:26Z</dc:date>
    <item>
      <title>&lt;UND&gt;&lt;/UND&gt; Tags work inconsistently in Arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/lt-und-gt-lt-und-gt-tags-work-inconsistently-in/m-p/1681792#M101595</link>
      <description>&lt;P&gt;I am trying to underline the first line in a three line label.&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;ownlab1 = $feature.ParcelID&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;ownlab1&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;'&amp;lt;UND&amp;gt;'&lt;/SPAN&gt;&lt;SPAN&gt;+&lt;/SPAN&gt;&lt;SPAN&gt;Text&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;ownlab1&lt;/SPAN&gt;&lt;SPAN&gt;)+&lt;/SPAN&gt;&lt;SPAN&gt;'&amp;lt;/UND&amp;gt;'&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;The resulting labels &lt;EM&gt;sometimes work and sometimes don't.&lt;/EM&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;I get &lt;STRONG&gt;'&lt;U&gt;3232'&lt;/U&gt; &lt;/STRONG&gt;for example, which is what I want, but also,&lt;STRONG&gt; '&amp;lt;UND&amp;gt;3234&amp;lt;/UND&amp;gt;'&lt;/STRONG&gt; I can't figure out what is different about lines that honor the underline tag and those which reject it.&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Is there any logical reason for this?&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Thank you,&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;Randy McGregor&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 03 Feb 2026 16:52:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/lt-und-gt-lt-und-gt-tags-work-inconsistently-in/m-p/1681792#M101595</guid>
      <dc:creator>RandyMcGregor_BMcD</dc:creator>
      <dc:date>2026-02-03T16:52:12Z</dc:date>
    </item>
    <item>
      <title>Re: &lt;UND&gt;&lt;/UND&gt; Tags work inconsistently in Arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/lt-und-gt-lt-und-gt-tags-work-inconsistently-in/m-p/1681804#M101596</link>
      <description>&lt;P&gt;If the text contains a "&amp;lt;" or "&amp;amp;", these special characters break formatting tags. You have to replace them with&amp;nbsp;"&amp;amp;lt;" and&amp;nbsp;"&amp;amp;amp;". This line replaces both (and uses&lt;A href="https://developers.arcgis.com/arcade/guide/template-literals/" target="_self"&gt; template literals&lt;/A&gt;)&lt;/P&gt;&lt;LI-CODE lang="c"&gt;`&amp;lt;UND&amp;gt;${Replace(Replace($feature.ParcelID, "&amp;amp;", "&amp;amp;amp;"), "&amp;lt;", "&amp;amp;lt;")}&amp;lt;/UND&amp;gt;`&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Feb 2026 17:34:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/lt-und-gt-lt-und-gt-tags-work-inconsistently-in/m-p/1681804#M101596</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2026-02-03T17:34:04Z</dc:date>
    </item>
    <item>
      <title>Re: &lt;UND&gt;&lt;/UND&gt; Tags work inconsistently in Arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/lt-und-gt-lt-und-gt-tags-work-inconsistently-in/m-p/1681817#M101597</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/719826"&gt;@RandyMcGregor_BMcD&lt;/a&gt;&amp;nbsp;- I tested this with some of my data and noticed a few formatting issues with your label expression.&amp;nbsp; Instead of a two line arcade expression, how about this -&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;"&amp;lt;UND&amp;gt;"&lt;/SPAN&gt;&lt;SPAN&gt;+&lt;/SPAN&gt;&lt;SPAN&gt;$feature&lt;/SPAN&gt;&lt;SPAN&gt;.ParcelID&lt;/SPAN&gt;&lt;SPAN&gt;+&lt;/SPAN&gt;&lt;SPAN&gt;"&amp;lt;/UND&amp;gt;"&lt;BR /&gt;&lt;BR /&gt;It works in my ArcGIS Pro 3.6.x&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 03 Feb 2026 17:48:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/lt-und-gt-lt-und-gt-tags-work-inconsistently-in/m-p/1681817#M101597</guid>
      <dc:creator>Robert_LeClair</dc:creator>
      <dc:date>2026-02-03T17:48:07Z</dc:date>
    </item>
    <item>
      <title>Re: &lt;UND&gt;&lt;/UND&gt; Tags work inconsistently in Arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/lt-und-gt-lt-und-gt-tags-work-inconsistently-in/m-p/1681822#M101599</link>
      <description>&lt;P&gt;Thanks Ken and Robert, I'll give it a try!&lt;/P&gt;</description>
      <pubDate>Tue, 03 Feb 2026 18:27:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/lt-und-gt-lt-und-gt-tags-work-inconsistently-in/m-p/1681822#M101599</guid>
      <dc:creator>RandyMcGregor_BMcD</dc:creator>
      <dc:date>2026-02-03T18:27:18Z</dc:date>
    </item>
    <item>
      <title>Re: &lt;UND&gt;&lt;/UND&gt; Tags work inconsistently in Arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/lt-und-gt-lt-und-gt-tags-work-inconsistently-in/m-p/1681996#M101617</link>
      <description>&lt;P&gt;No effect, but I appreciate the suggestion. What's weird is that it works on most labels but not others. My guess is that there are some weird characters are in the mix (but they are not clearly visible.). Maybe a unicode vs straight text deal or something nightmarish like that &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; Thank you.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Feb 2026 12:42:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/lt-und-gt-lt-und-gt-tags-work-inconsistently-in/m-p/1681996#M101617</guid>
      <dc:creator>RandyMcGregor_BMcD</dc:creator>
      <dc:date>2026-02-04T12:42:08Z</dc:date>
    </item>
    <item>
      <title>Re: &lt;UND&gt;&lt;/UND&gt; Tags work inconsistently in Arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/lt-und-gt-lt-und-gt-tags-work-inconsistently-in/m-p/1681997#M101618</link>
      <description>&lt;P&gt;Thanks Ken,&lt;/P&gt;&lt;P&gt;There are no&amp;nbsp;&lt;EM&gt;visible&lt;/EM&gt; troublemaker characters but there may be something 'wrong' with the&amp;nbsp; values that are ignoring the &amp;lt;UND&amp;gt;&amp;lt;/UND&amp;gt; tags.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Feb 2026 12:43:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/lt-und-gt-lt-und-gt-tags-work-inconsistently-in/m-p/1681997#M101618</guid>
      <dc:creator>RandyMcGregor_BMcD</dc:creator>
      <dc:date>2026-02-04T12:43:14Z</dc:date>
    </item>
    <item>
      <title>Re: &lt;UND&gt;&lt;/UND&gt; Tags work inconsistently in Arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/lt-und-gt-lt-und-gt-tags-work-inconsistently-in/m-p/1682011#M101619</link>
      <description>&lt;P&gt;What else is in your multi-line string? Do the other elements have the special characters?&lt;/P&gt;</description>
      <pubDate>Wed, 04 Feb 2026 14:00:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/lt-und-gt-lt-und-gt-tags-work-inconsistently-in/m-p/1682011#M101619</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2026-02-04T14:00:40Z</dc:date>
    </item>
    <item>
      <title>Re: &lt;UND&gt;&lt;/UND&gt; Tags work inconsistently in Arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/lt-und-gt-lt-und-gt-tags-work-inconsistently-in/m-p/1682044#M101620</link>
      <description>&lt;P&gt;That is odd certainly.&amp;nbsp; Is the ParcelID field a text field or a numeric field? I wonder if you could create a new field say "opposite" of ParcelID and then use the Field Calculator to populate the field?&amp;nbsp; By "opposite" I mean, if it's a numeric field, then create a new text field to do the field calculation upon, then apply the UND arcade to the new field for testing purposes.&lt;/P&gt;</description>
      <pubDate>Wed, 04 Feb 2026 15:14:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/lt-und-gt-lt-und-gt-tags-work-inconsistently-in/m-p/1682044#M101620</guid>
      <dc:creator>Robert_LeClair</dc:creator>
      <dc:date>2026-02-04T15:14:57Z</dc:date>
    </item>
    <item>
      <title>Re: &lt;UND&gt;&lt;/UND&gt; Tags work inconsistently in Arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/lt-und-gt-lt-und-gt-tags-work-inconsistently-in/m-p/1682116#M101635</link>
      <description>&lt;P&gt;Oookay, so I decided to enter text and it's still being naughty:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;var&lt;/SPAN&gt; &lt;SPAN&gt;ownlab1&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;"&amp;lt;UND&amp;gt;"&lt;/SPAN&gt;&lt;SPAN&gt;+&lt;/SPAN&gt;&lt;SPAN&gt;"Hi Mom"&lt;/SPAN&gt;&lt;SPAN&gt;+&lt;/SPAN&gt;&lt;SPAN&gt;"_&amp;lt;/UND&amp;gt;"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="RandyMcGregor_BMcD_0-1770228561295.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/147897i0A2339F1584DC213/image-size/medium?v=v2&amp;amp;px=400" role="button" title="RandyMcGregor_BMcD_0-1770228561295.png" alt="RandyMcGregor_BMcD_0-1770228561295.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Feb 2026 18:10:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/lt-und-gt-lt-und-gt-tags-work-inconsistently-in/m-p/1682116#M101635</guid>
      <dc:creator>RandyMcGregor_BMcD</dc:creator>
      <dc:date>2026-02-04T18:10:09Z</dc:date>
    </item>
    <item>
      <title>Re: &lt;UND&gt;&lt;/UND&gt; Tags work inconsistently in Arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/lt-und-gt-lt-und-gt-tags-work-inconsistently-in/m-p/1682135#M101638</link>
      <description>&lt;P&gt;What else is in the label? If anything in the label contains those special characters, then the formatting tags will break. For example, this code&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var ownlab1 = $feature.Site;
var other = "This &amp;amp; that";
"&amp;lt;UND&amp;gt;" + Text(ownlab1) + "&amp;lt;/UND&amp;gt;\n" + other;&lt;/LI-CODE&gt;&lt;P&gt;results in this label&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2026-02-04_13-27-31.PNG" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/147900iD27C921F67BCB465/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2026-02-04_13-27-31.PNG" alt="2026-02-04_13-27-31.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;This code fixes it&lt;/P&gt;&lt;LI-CODE lang="javascript"&gt;var ownlab1 = $feature.Site;
var other = Replace("This &amp;amp; that", "&amp;amp;", "&amp;amp;amp;");
'&amp;lt;UND&amp;gt;'+Text(ownlab1)+'&amp;lt;/UND&amp;gt;\n' + other;&lt;/LI-CODE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2026-02-04_13-32-29.PNG" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/147903iC0FEF8FE097EEF0C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2026-02-04_13-32-29.PNG" alt="2026-02-04_13-32-29.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Feb 2026 18:43:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/lt-und-gt-lt-und-gt-tags-work-inconsistently-in/m-p/1682135#M101638</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2026-02-04T18:43:26Z</dc:date>
    </item>
    <item>
      <title>Re: &lt;UND&gt;&lt;/UND&gt; Tags work inconsistently in Arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/lt-und-gt-lt-und-gt-tags-work-inconsistently-in/m-p/1682155#M101641</link>
      <description>&lt;P&gt;Turns out, this is only a problem when I use TextFormatting.NewLine. I tried with just one field and it worked fine.&lt;/P&gt;&lt;P&gt;Appears as though TextFormatting.NewLine does not play well with other formatting tags?&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;EM&gt;var ownlab = ownlab1 + TextFormatting.NewLine + ownlab2 + Textformatting.NewLine + ownlab3;&lt;/EM&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 04 Feb 2026 19:23:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/lt-und-gt-lt-und-gt-tags-work-inconsistently-in/m-p/1682155#M101641</guid>
      <dc:creator>RandyMcGregor_BMcD</dc:creator>
      <dc:date>2026-02-04T19:23:12Z</dc:date>
    </item>
    <item>
      <title>Re: &lt;UND&gt;&lt;/UND&gt; Tags work inconsistently in Arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/lt-und-gt-lt-und-gt-tags-work-inconsistently-in/m-p/1682206#M101644</link>
      <description>&lt;P&gt;I'm not seeing that&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2026-02-04_16-05-27.PNG" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/147925iC4F397EE67CBCC11/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2026-02-04_16-05-27.PNG" alt="2026-02-04_16-05-27.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I see it if I include a special character&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2026-02-04_16-06-01.PNG" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/147926i27AD80BBFE3C7BAF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="2026-02-04_16-06-01.PNG" alt="2026-02-04_16-06-01.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;For the labels that are broken, what are the values for ownlab2 and ownlab3?&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Wed, 04 Feb 2026 21:09:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/lt-und-gt-lt-und-gt-tags-work-inconsistently-in/m-p/1682206#M101644</guid>
      <dc:creator>KenBuja</dc:creator>
      <dc:date>2026-02-04T21:09:34Z</dc:date>
    </item>
    <item>
      <title>Re: &lt;UND&gt;&lt;/UND&gt; Tags work inconsistently in Arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/lt-und-gt-lt-und-gt-tags-work-inconsistently-in/m-p/1682328#M101661</link>
      <description>&lt;P&gt;Thanks! I see no difference between values that are broken and those that are not. They are alphanumeric and I thought that was it (ie the code was confused by numbers as text) but I have seen, for example, '&lt;U&gt;3234'&lt;/U&gt;&lt;EM&gt;&amp;nbsp;&lt;/EM&gt;and in a nearby parcel '&amp;lt;UND&amp;gt;3232&amp;lt;/UND&amp;gt;' The maddening thing is that it is inconsistent. None of them have special characters or at least not visible special characters. Some get the underline and some don't. I've tried copying and pasting into Word to see if i could see any difference and I just can't.&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's a three line label and I tried it on the text in the second line - same thing - Some were underlined, some printed out the &amp;lt;UND&amp;gt;&amp;lt;/UND&amp;gt; tags.&lt;/P&gt;&lt;P&gt;I'm thinking either a bug or an Arcade/Text Formtting Tag incompatibility.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Feb 2026 13:16:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/lt-und-gt-lt-und-gt-tags-work-inconsistently-in/m-p/1682328#M101661</guid>
      <dc:creator>RandyMcGregor_BMcD</dc:creator>
      <dc:date>2026-02-05T13:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: &lt;UND&gt;&lt;/UND&gt; Tags work inconsistently in Arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/lt-und-gt-lt-und-gt-tags-work-inconsistently-in/m-p/1682329#M101662</link>
      <description>&lt;P&gt;&lt;EM&gt;&lt;SPAN&gt;For the labels that are broken, what are the values for ownlab2 and ownlab3?&lt;/SPAN&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I see what you're getting at here. Other lines may have the special characters! I'll check it out. Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 05 Feb 2026 13:25:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/lt-und-gt-lt-und-gt-tags-work-inconsistently-in/m-p/1682329#M101662</guid>
      <dc:creator>RandyMcGregor_BMcD</dc:creator>
      <dc:date>2026-02-05T13:25:08Z</dc:date>
    </item>
    <item>
      <title>Re: &lt;UND&gt;&lt;/UND&gt; Tags work inconsistently in Arcade</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/lt-und-gt-lt-und-gt-tags-work-inconsistently-in/m-p/1682335#M101664</link>
      <description>&lt;P&gt;Yes! That's it! I wasn't clueing in to the fact that the 2d and 3d lines might have special characters, because only the first line was underlined, but of course a special character anywhere in the label-text will throw the &amp;lt;UND&amp;gt; tags off. You DID explain this but It didn't register right away :-(. Thank you very much for your help and your patience. This will help us very much.&lt;/P&gt;</description>
      <pubDate>Thu, 05 Feb 2026 13:43:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/lt-und-gt-lt-und-gt-tags-work-inconsistently-in/m-p/1682335#M101664</guid>
      <dc:creator>RandyMcGregor_BMcD</dc:creator>
      <dc:date>2026-02-05T13:43:51Z</dc:date>
    </item>
  </channel>
</rss>

