<?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: QlikView and Full Stops. in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874400#M659596</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Text(Replace(OrderNumber, '.', ''))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Apr 2015 10:39:04 GMT</pubDate>
    <dc:creator>jagan</dc:creator>
    <dc:date>2015-04-21T10:39:04Z</dc:date>
    <item>
      <title>QlikView and Full Stops.</title>
      <link>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874394#M659588</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I currently have two different orders and for this instance we will call it Order 123 and there is another order in the system with Order No 123. (with a full stop at the end). However, when I look in QlikView it is showing that there are two orders for 123 when in fact there aren't due to the full stop. Is there a way of getting around this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 10:13:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874394#M659588</guid>
      <dc:creator />
      <dc:date>2015-04-21T10:13:37Z</dc:date>
    </item>
    <item>
      <title>Re: QlikView and Full Stops.</title>
      <link>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874395#M659589</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Remove the dot while loading Order No in script like below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load Purgechar(OrderNoField,'.') As &lt;SPAN style="font-size: 13.3333330154419px;"&gt;OrderNoField ...&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 10:20:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874395#M659589</guid>
      <dc:creator>anbu1984</dc:creator>
      <dc:date>2015-04-21T10:20:33Z</dc:date>
    </item>
    <item>
      <title>Re: QlikView and Full Stops.</title>
      <link>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874396#M659590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If these two records belong to the same order, I would recommend removing the full stop on load time:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; purgechar(OrderField,'.') as OrderField,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 10:20:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874396#M659590</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2015-04-21T10:20:54Z</dc:date>
    </item>
    <item>
      <title>Re: QlikView and Full Stops.</title>
      <link>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874397#M659592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;while loading you can change the Order nos like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=PurgeChar('Order123.','.')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will return Order123, the trailing fullstop is removed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 10:21:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874397#M659592</guid>
      <dc:creator />
      <dc:date>2015-04-21T10:21:32Z</dc:date>
    </item>
    <item>
      <title>Re: QlikView and Full Stops.</title>
      <link>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874398#M659593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the load script force the order field to load as text:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Text(Order) as Order&lt;/P&gt;&lt;H1&gt;&lt;A name="kanchor1335"&gt;&lt;/A&gt;&lt;/H1&gt;&lt;H1&gt;&lt;/H1&gt;&lt;H1&gt;&lt;/H1&gt;&lt;H1&gt;Text&lt;/H1&gt;&lt;P class="syntax"&gt;&lt;SPAN class="Bold"&gt;text(&lt;/SPAN&gt;&lt;SPAN class="Italic"&gt;expression &lt;/SPAN&gt;&lt;SPAN class="Bold"&gt;)&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;The &lt;SPAN class="Bold"&gt;text&lt;/SPAN&gt; function forces the expression to be treated as text, even if a numeric interpretation is possible. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 10:22:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874398#M659593</guid>
      <dc:creator>stigchel</dc:creator>
      <dc:date>2015-04-21T10:22:48Z</dc:date>
    </item>
    <item>
      <title>Re: QlikView and Full Stops.</title>
      <link>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874399#M659594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;I've just tried using Piet Hein van der Stigchel's and it hasn't worked.It is still bringing back the result as one, when it should be two. These are separate orders as well, so the PurgeChar function wouldn't work here (anbu cheliyan &lt;A href="https://community.qlik.com/qlik-users/15823"&gt;swuehl&lt;/A&gt; and &lt;A href="https://community.qlik.com/qlik-users/118893"&gt;ramko496&lt;/A&gt;‌)&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 10:31:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874399#M659594</guid>
      <dc:creator />
      <dc:date>2015-04-21T10:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: QlikView and Full Stops.</title>
      <link>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874400#M659596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Text(Replace(OrderNumber, '.', ''))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 10:39:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874400#M659596</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-04-21T10:39:04Z</dc:date>
    </item>
    <item>
      <title>Re: QlikView and Full Stops.</title>
      <link>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874401#M659597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you explain your requirement with examples.???&lt;/P&gt;&lt;P&gt;When you need two different orders and when you required as one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 10:40:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874401#M659597</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2015-04-21T10:40:38Z</dc:date>
    </item>
    <item>
      <title>Re: QlikView and Full Stops.</title>
      <link>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874402#M659600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;QlikView currently shows Order 123 with a frequency of two.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However, when I look in the database there is Order 123 (which QlikView shows) and Order 123. (which QlikView doesn't show because of the full stop.)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I require is the two to be shown differently, ideally as they are in the database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 10:43:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874402#M659600</guid>
      <dc:creator />
      <dc:date>2015-04-21T10:43:58Z</dc:date>
    </item>
    <item>
      <title>Re: QlikView and Full Stops.</title>
      <link>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874403#M659601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Piet's suggestion is correct and it should work. I suggest that you post the relevant part of your load script to see why it appears not to be working for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 10:44:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874403#M659601</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-04-21T10:44:43Z</dc:date>
    </item>
    <item>
      <title>Re: QlikView and Full Stops.</title>
      <link>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874404#M659604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Okay here goes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ORDER_NO&amp;amp;'_'&amp;amp;SITE as ORDER_KEY;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Text(ORDER_NO) as ORDER_NO,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SITE&lt;/P&gt;&lt;P&gt;FROM database_table.qvd (qvd)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 10:48:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874404#M659604</guid>
      <dc:creator />
      <dc:date>2015-04-21T10:48:09Z</dc:date>
    </item>
    <item>
      <title>Re: QlikView and Full Stops.</title>
      <link>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874405#M659605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD Text(test) As test Inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;&amp;nbsp; test&lt;/P&gt;&lt;P&gt;&amp;nbsp; 123&lt;/P&gt;&lt;P&gt;&amp;nbsp; 123.&lt;/P&gt;&lt;P&gt;&amp;nbsp; 0123&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Output in list box with frequencies:&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="84220" alt="test.png" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/84220_test.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 10:56:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874405#M659605</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-04-21T10:56:51Z</dc:date>
    </item>
    <item>
      <title>Re: QlikView and Full Stops.</title>
      <link>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874406#M659608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andrew,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the example attached is as per &lt;A href="https://community.qlik.com/qlik-users/41178"&gt;Stigchel&lt;/A&gt;‌ reply, just loading from a simple csv you end up with both 123 and 123.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What are you loading from, can you supply the SELECT part of the script? Is the . getting stripped out before it gets into QV?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 10:57:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874406#M659608</guid>
      <dc:creator>awhitfield</dc:creator>
      <dc:date>2015-04-21T10:57:38Z</dc:date>
    </item>
    <item>
      <title>Re: QlikView and Full Stops.</title>
      <link>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874407#M659610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I expect the problem already exists in the qvd. The Text() needs to be in the original load from the database (in the qvd generator).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 10:59:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874407#M659610</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2015-04-21T10:59:09Z</dc:date>
    </item>
    <item>
      <title>Re: QlikView and Full Stops.</title>
      <link>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874408#M659611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tell me, do you bleed? You will!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 10:59:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874408#M659611</guid>
      <dc:creator>jpenuliar</dc:creator>
      <dc:date>2015-04-21T10:59:49Z</dc:date>
    </item>
    <item>
      <title>Re: QlikView and Full Stops.</title>
      <link>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874409#M659613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;I'm loading straight from the database. It is Oracle, would that make a difference? This then gets put into the .qvd file.&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 11:03:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874409#M659613</guid>
      <dc:creator />
      <dc:date>2015-04-21T11:03:11Z</dc:date>
    </item>
    <item>
      <title>Re: QlikView and Full Stops.</title>
      <link>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874410#M659614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;"That's how it starts. The feeling, the powerlessness… that turns good men cruel"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 11:08:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874410#M659614</guid>
      <dc:creator>awhitfield</dc:creator>
      <dc:date>2015-04-21T11:08:55Z</dc:date>
    </item>
    <item>
      <title>Re: QlikView and Full Stops.</title>
      <link>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874411#M659615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Andrew,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;unfortunately I have no oracle knowledge at all, but if you execute the select statement in Oracle, does it actaull return the 123. ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Apr 2015 11:31:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QlikView-and-Full-Stops/m-p/874411#M659615</guid>
      <dc:creator>awhitfield</dc:creator>
      <dc:date>2015-04-21T11:31:53Z</dc:date>
    </item>
  </channel>
</rss>

