<?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 Facing problem in screpting in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Facing-problem-in-screpting/m-p/1619618#M595501</link>
    <description>&lt;P&gt;hi all&lt;/P&gt;&lt;P&gt;i need&amp;nbsp; a answer for this,&lt;/P&gt;&lt;P&gt;i am loading three fields from qvd , one of the field having both numeric and char but i want to display only numeric values .&lt;/P&gt;&lt;P&gt;LOAD [SHIP REGISTERED IN],&lt;BR /&gt;[VESSEL NAME],&lt;BR /&gt;[Container Number]&lt;/P&gt;&lt;P&gt;this is my fields and&amp;nbsp;&amp;nbsp;[Container Number] i want to display this field .&lt;/P&gt;</description>
    <pubDate>Tue, 03 Sep 2019 13:54:46 GMT</pubDate>
    <dc:creator>lucky1618</dc:creator>
    <dc:date>2019-09-03T13:54:46Z</dc:date>
    <item>
      <title>Facing problem in screpting</title>
      <link>https://community.qlik.com/t5/QlikView/Facing-problem-in-screpting/m-p/1619618#M595501</link>
      <description>&lt;P&gt;hi all&lt;/P&gt;&lt;P&gt;i need&amp;nbsp; a answer for this,&lt;/P&gt;&lt;P&gt;i am loading three fields from qvd , one of the field having both numeric and char but i want to display only numeric values .&lt;/P&gt;&lt;P&gt;LOAD [SHIP REGISTERED IN],&lt;BR /&gt;[VESSEL NAME],&lt;BR /&gt;[Container Number]&lt;/P&gt;&lt;P&gt;this is my fields and&amp;nbsp;&amp;nbsp;[Container Number] i want to display this field .&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2019 13:54:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Facing-problem-in-screpting/m-p/1619618#M595501</guid>
      <dc:creator>lucky1618</dc:creator>
      <dc:date>2019-09-03T13:54:46Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem in screpting</title>
      <link>https://community.qlik.com/t5/QlikView/Facing-problem-in-screpting/m-p/1619625#M595502</link>
      <description>&lt;UL&gt;
&lt;LI&gt;Do you want to clean up the field from non-numeric values?&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Use KeepChar([Container Number], '0123456789')&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Do you want instead to only load those records for which the value of [Container Number] is numeric only? Do&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;LOAD ...&lt;/P&gt;
&lt;P&gt;FROM...&lt;/P&gt;
&lt;P&gt;WHERE IsNum([Container Number])&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Do you want to load all data but only display in a listbox or a chart those rows for which [Container Number] is numeric?&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Create a new field in the script for that&lt;/P&gt;
&lt;P&gt;LOAD ...&lt;/P&gt;
&lt;P&gt;If(IsNum([Container Number]), [Container Number], Null()) AS [Container Numeric Only]&lt;/P&gt;
&lt;P&gt;...&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2019 14:00:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Facing-problem-in-screpting/m-p/1619625#M595502</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2019-09-03T14:00:04Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem in screpting</title>
      <link>https://community.qlik.com/t5/QlikView/Facing-problem-in-screpting/m-p/1619658#M595503</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;SPAN&gt;Miguel,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;thanks for your support ,but still i did not get the answer,&amp;nbsp; please check my code once .&amp;nbsp;&amp;nbsp;[Container Number] values&amp;nbsp; are like this&amp;nbsp; TGHU226073 ,LTIU606255&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;i want to display only numeric values.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;//load * where [Container Number]= KeepChar([Container Number],'0123456789');&lt;BR /&gt;LOAD [SHIP REGISTERED IN],&lt;BR /&gt;[VESSEL NAME],&lt;BR /&gt;[Container Number]&lt;BR /&gt;//iF(IsNum([Container Number]),[Container Number],null()) as number&lt;BR /&gt;FROM&lt;BR /&gt;[C:\Users\srinivasu\Desktop\Qlikview files\Folder Structure\FDS\Extract_QVD\Shiprereg.qvd]&lt;BR /&gt;(qvd)&lt;BR /&gt;Where IsNum([Container Number]);&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Sep 2019 14:50:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Facing-problem-in-screpting/m-p/1619658#M595503</guid>
      <dc:creator>lucky1618</dc:creator>
      <dc:date>2019-09-03T14:50:10Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem in screpting</title>
      <link>https://community.qlik.com/t5/QlikView/Facing-problem-in-screpting/m-p/1620144#M595504</link>
      <description>&lt;P&gt;LOAD *,&lt;/P&gt;
&lt;P&gt;KeepChar([Container Number], '0123456789') AS [Container Number Only]&lt;/P&gt;
&lt;P&gt;FROM ...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note that this will create a new field with only the numeric values from [Container Number], so in your examples, this field will store "226073" and "606255".&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2019 15:31:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Facing-problem-in-screpting/m-p/1620144#M595504</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2019-09-04T15:31:38Z</dc:date>
    </item>
    <item>
      <title>Re: Facing problem in screpting</title>
      <link>https://community.qlik.com/t5/QlikView/Facing-problem-in-screpting/m-p/1620194#M595505</link>
      <description>&lt;P&gt;Thank u&amp;nbsp;&lt;SPAN&gt;Miguel i got answer.&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 04 Sep 2019 17:04:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Facing-problem-in-screpting/m-p/1620194#M595505</guid>
      <dc:creator>lucky1618</dc:creator>
      <dc:date>2019-09-04T17:04:22Z</dc:date>
    </item>
  </channel>
</rss>

