<?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: Hidden characters in data in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Hidden-characters-in-data/m-p/2543292#M109505</link>
    <description>&lt;P&gt;Thanks,&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/49432"&gt;@Chanty4u&lt;/a&gt;&amp;nbsp;- that definitely helps. I did this in the load:&lt;/P&gt;&lt;P&gt;If(IsNum(Procedure_Code1), Floor(Procedure_Code1), Text(Trim(Procedure_Code1))) as Procedure_Code&lt;/P&gt;&lt;P&gt;(I wanted to see if purging chr(160) was necessary or not. But it is a good idea to include it.)&lt;/P&gt;&lt;P&gt;I now can use the number and the 5-character string in set analysis.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Lauri_0-1771432539165.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/186982i71BAA2C51548427E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Lauri_0-1771432539165.png" alt="Lauri_0-1771432539165.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;It's curious to me that the last search -- '*99396*' -- in single quotes doesn't work. I take that to mean Qlik is looking for a string with some character before or after the literal, whereas double quotes tells it to do a broader search including 99396 with nothing before or after.&lt;/P&gt;</description>
    <pubDate>Wed, 18 Feb 2026 16:39:55 GMT</pubDate>
    <dc:creator>Lauri</dc:creator>
    <dc:date>2026-02-18T16:39:55Z</dc:date>
    <item>
      <title>Hidden characters in data</title>
      <link>https://community.qlik.com/t5/App-Development/Hidden-characters-in-data/m-p/2543283#M109503</link>
      <description>&lt;P&gt;Does my data contain hidden characters? I have a field that contains both numbers and strings. When I try to filter on a specific numeric value (99396) in set analysis, it returns no results. When I filter on '*99396*' it returns results. Yet the length of the field is &lt;U&gt;always&lt;/U&gt; 5. Does Qlik store hidden characters? Do they have zero length?&lt;/P&gt;&lt;P&gt;Here's what my output looks like:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Lauri_0-1771429442182.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/186979iD966064257F65509/image-size/large?v=v2&amp;amp;px=999" role="button" title="Lauri_0-1771429442182.png" alt="Lauri_0-1771429442182.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;If it's hard to read, here is the first column's text:&lt;/P&gt;&lt;P&gt;count({&amp;lt;Procedure_Code={99396}&amp;gt;}ProcedureDate)&lt;/P&gt;&lt;P&gt;The other columns' filters are, from left to right:&lt;/P&gt;&lt;P&gt;Procedure_Code={'99396'}&lt;/P&gt;&lt;P&gt;Procedure_Code={'*99396'}&lt;/P&gt;&lt;P&gt;Procedure_Code={'99396*'}&lt;/P&gt;&lt;P&gt;Procedure_Code={'*99396*'}&lt;/P&gt;&lt;P&gt;It's strange that the 3 combinations of wild cards have the same result. It suggests something other than a hidden character at the start or end.&lt;/P&gt;&lt;P&gt;And the length is 5:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Lauri_1-1771429750574.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/186980iD3F51B19B68AAE4D/image-size/large?v=v2&amp;amp;px=999" role="button" title="Lauri_1-1771429750574.png" alt="Lauri_1-1771429750574.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Thanks for any ideas.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Feb 2026 15:52:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Hidden-characters-in-data/m-p/2543283#M109503</guid>
      <dc:creator>Lauri</dc:creator>
      <dc:date>2026-02-18T15:52:17Z</dc:date>
    </item>
    <item>
      <title>Re: Hidden characters in data</title>
      <link>https://community.qlik.com/t5/App-Development/Hidden-characters-in-data/m-p/2543288#M109504</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try this&amp;nbsp; in script.&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; Text(Trim(PurgeChar(Procedure_Code, Chr(160)))) as Procedure_Code&lt;/P&gt;&lt;P&gt;FROM ...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or test like in set analysis try this&amp;nbsp;&lt;/P&gt;&lt;P&gt;count({&amp;lt;Procedure_Code={"*99396*"}&amp;gt;} ProcedureDate)&lt;/P&gt;</description>
      <pubDate>Wed, 18 Feb 2026 16:12:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Hidden-characters-in-data/m-p/2543288#M109504</guid>
      <dc:creator>Chanty4u</dc:creator>
      <dc:date>2026-02-18T16:12:09Z</dc:date>
    </item>
    <item>
      <title>Re: Hidden characters in data</title>
      <link>https://community.qlik.com/t5/App-Development/Hidden-characters-in-data/m-p/2543292#M109505</link>
      <description>&lt;P&gt;Thanks,&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/49432"&gt;@Chanty4u&lt;/a&gt;&amp;nbsp;- that definitely helps. I did this in the load:&lt;/P&gt;&lt;P&gt;If(IsNum(Procedure_Code1), Floor(Procedure_Code1), Text(Trim(Procedure_Code1))) as Procedure_Code&lt;/P&gt;&lt;P&gt;(I wanted to see if purging chr(160) was necessary or not. But it is a good idea to include it.)&lt;/P&gt;&lt;P&gt;I now can use the number and the 5-character string in set analysis.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Lauri_0-1771432539165.png" style="width: 999px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/186982i71BAA2C51548427E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Lauri_0-1771432539165.png" alt="Lauri_0-1771432539165.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;It's curious to me that the last search -- '*99396*' -- in single quotes doesn't work. I take that to mean Qlik is looking for a string with some character before or after the literal, whereas double quotes tells it to do a broader search including 99396 with nothing before or after.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Feb 2026 16:39:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Hidden-characters-in-data/m-p/2543292#M109505</guid>
      <dc:creator>Lauri</dc:creator>
      <dc:date>2026-02-18T16:39:55Z</dc:date>
    </item>
  </channel>
</rss>

