<?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: select only numeric values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/select-only-numeric-values/m-p/809611#M285725</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might need another ) after your first ApplyMap like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;If(IsNum(ApplyMap('WAC_MAP',LINK_WAC)), ApplyMap('WAC_MAP',LINK_WAC) ,TARIFAREFERENCIAL) as WAC&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;HTH&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Best,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;S&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 16 Mar 2015 13:15:30 GMT</pubDate>
    <dc:creator>sunny_talwar</dc:creator>
    <dc:date>2015-03-16T13:15:30Z</dc:date>
    <item>
      <title>select only numeric values</title>
      <link>https://community.qlik.com/t5/QlikView/select-only-numeric-values/m-p/809606#M285720</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;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;I have this map in load script:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INVENTTRANS:&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;STRONG style="color: #ff0000;"&gt;&amp;nbsp; ApplyMap('WAC_MAP',LINK_WAC) AS WAC&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;from $(VStore)INVENTTRANS_WAC.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to applymap only if the field is numeric is it possible?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Mar 2015 12:38:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/select-only-numeric-values/m-p/809606#M285720</guid>
      <dc:creator>ecabanas</dc:creator>
      <dc:date>2015-03-16T12:38:43Z</dc:date>
    </item>
    <item>
      <title>Re: select only numeric values</title>
      <link>https://community.qlik.com/t5/QlikView/select-only-numeric-values/m-p/809607#M285721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eduard, you can use the IsNum() function, ie:&lt;/P&gt;&lt;P&gt;If(IsNum(LINK_WAC, &lt;STRONG style="color: #ff0000;"&gt;ApplyMap('WAC_MAP',LINK_WAC) &lt;/STRONG&gt;&lt;EM&gt;[,InstructionsIfNotIsNumeric]&lt;/EM&gt;) as WAC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Mar 2015 12:45:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/select-only-numeric-values/m-p/809607#M285721</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2015-03-16T12:45:12Z</dc:date>
    </item>
    <item>
      <title>Re: select only numeric values</title>
      <link>https://community.qlik.com/t5/QlikView/select-only-numeric-values/m-p/809608#M285722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eduard,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the other option you have is to ensure only numerical values are present in your applymap itself, then that is only what will be mapped when you use it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope that helps&lt;/P&gt;&lt;P&gt;Joe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Mar 2015 12:55:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/select-only-numeric-values/m-p/809608#M285722</guid>
      <dc:creator />
      <dc:date>2015-03-16T12:55:14Z</dc:date>
    </item>
    <item>
      <title>Re: select only numeric values</title>
      <link>https://community.qlik.com/t5/QlikView/select-only-numeric-values/m-p/809609#M285723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If your mapping load table doesn't have a mapping available for certain LINK_WAC the default value will be LINK_WAC unless you specify another default value. Take a look at the image below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="image-1 jive-image" src="https://community.qlik.com/legacyfs/online/80843_pastedImage_0.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;S&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Mar 2015 12:55:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/select-only-numeric-values/m-p/809609#M285723</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-03-16T12:55:57Z</dc:date>
    </item>
    <item>
      <title>Re: select only numeric values</title>
      <link>https://community.qlik.com/t5/QlikView/select-only-numeric-values/m-p/809610#M285724</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ruben,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did but it returns this error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Error in expression:&lt;/P&gt;&lt;P&gt;IsNum takes 1 parameter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INVENTTRANS:&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(IsNum(ApplyMap('WAC_MAP',LINK_WAC), ApplyMap('WAC_MAP',LINK_WAC) ,TARIFAREFERENCIAL) as WAC &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;from E:\Data BI\Documents\QVD\INVENTTRANS_WAC.qvd (qvd)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thank's&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Mar 2015 13:09:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/select-only-numeric-values/m-p/809610#M285724</guid>
      <dc:creator>ecabanas</dc:creator>
      <dc:date>2015-03-16T13:09:07Z</dc:date>
    </item>
    <item>
      <title>Re: select only numeric values</title>
      <link>https://community.qlik.com/t5/QlikView/select-only-numeric-values/m-p/809611#M285725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might need another ) after your first ApplyMap like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;If(IsNum(ApplyMap('WAC_MAP',LINK_WAC)), ApplyMap('WAC_MAP',LINK_WAC) ,TARIFAREFERENCIAL) as WAC&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;HTH&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Best,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;S&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Mar 2015 13:15:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/select-only-numeric-values/m-p/809611#M285725</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-03-16T13:15:30Z</dc:date>
    </item>
    <item>
      <title>Re: select only numeric values</title>
      <link>https://community.qlik.com/t5/QlikView/select-only-numeric-values/m-p/809612#M285726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many many thank's Ruben&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Mar 2015 13:26:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/select-only-numeric-values/m-p/809612#M285726</guid>
      <dc:creator>ecabanas</dc:creator>
      <dc:date>2015-03-16T13:26:36Z</dc:date>
    </item>
  </channel>
</rss>

