<?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: Using IsNum() in Load to remove Numeric Values in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Using-IsNum-in-Load-to-remove-Numeric-Values/m-p/1201534#M874722</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Hello Weston,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Actually, what I meant to say was you missed to add "And" statement (You said you forgot to include "And", so that's okay &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;SPAN class="emoticon-inline emoticon_happy" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;/SPAN&gt;) and Isnum function syntax is not correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;The below line&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;IsNum([Code Name]&lt;STRONG style="font-style: inherit; font-family: inherit; color: #ff0000;"&gt;=0&lt;/STRONG&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Should be&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;IsNum([Code Name]) &lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;= 0&amp;nbsp; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Is this not working for you?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 01 Nov 2016 17:39:30 GMT</pubDate>
    <dc:creator>tamilarasu</dc:creator>
    <dc:date>2016-11-01T17:39:30Z</dc:date>
    <item>
      <title>Using IsNum() in Load to remove Numeric Values</title>
      <link>https://community.qlik.com/t5/QlikView/Using-IsNum-in-Load-to-remove-Numeric-Values/m-p/1201525#M874713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello QV Friends!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to use a IsNum() function in a load statement to remove field values that contain ONLY numbers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The field has values like (4391, 3973, ACLL5, AFMHG) etc. Some are only letters, some only numbers, some both. I want QV to exclude any field values that are made up of only numbers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My statement looks like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table2Name:&lt;/P&gt;&lt;P&gt;Left Keep (Table1Name)&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;[Field 1]&lt;/P&gt;&lt;P&gt;[Field 2]&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;From&lt;/P&gt;&lt;P&gt;..\..\..\..\Folder1\Folder2\Folder3\File.Filename.QVD&lt;/P&gt;&lt;P&gt;Where&lt;/P&gt;&lt;P&gt;[Field 1]='US'&lt;/P&gt;&lt;P&gt;IsNum([Code Name]=0)&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when I view the listbox for the remaining Codes, is still shows codes that are comprised only of Numbers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created a table box comparing the Codes and the result of "=IsNum(Code Name)" so I could verify it was evaluating as I thought it should and it seems to be evaluating correctly (i.e. numbers are getting a "-1" result and alphanumeric are getting a "0").&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any advice on how I can remove these number-only codes from being loaded?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;P&gt;-misterkingsley&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-IsNum-in-Load-to-remove-Numeric-Values/m-p/1201525#M874713</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Using IsNum() in Load to remove Numeric Values</title>
      <link>https://community.qlik.com/t5/QlikView/Using-IsNum-in-Load-to-remove-Numeric-Values/m-p/1201526#M874714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Weston,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think your where clause syntax is not correct. You can try below one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Table2Name:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Left Keep (Table1Name)&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[Field 1]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[Field 2]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;...&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;From&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;..\..\..\..\Folder1\Folder2\Folder3\File.Filename.QVD&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Where&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;[Field 1]='US' And IsNum([Code Name]) =0;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Nov 2016 03:21:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-IsNum-in-Load-to-remove-Numeric-Values/m-p/1201526#M874714</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2016-11-01T03:21:37Z</dc:date>
    </item>
    <item>
      <title>Re: Using IsNum() in Load to remove Numeric Values</title>
      <link>https://community.qlik.com/t5/QlikView/Using-IsNum-in-Load-to-remove-Numeric-Values/m-p/1201527#M874715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Weston,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here I am assuming that you want to extract only numeric values, so please use following...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD Field1, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field2&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1) where IsNum(Field2);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Nov 2016 04:12:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-IsNum-in-Load-to-remove-Numeric-Values/m-p/1201527#M874715</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-11-01T04:12:58Z</dc:date>
    </item>
    <item>
      <title>Re: Using IsNum() in Load to remove Numeric Values</title>
      <link>https://community.qlik.com/t5/QlikView/Using-IsNum-in-Load-to-remove-Numeric-Values/m-p/1201528#M874716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Table2Name:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Left Keep (Table1Name)&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[Field 1]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;[Field 2]&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;...&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;From&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;..\..\..\..\Folder1\Folder2\Folder3\File.Filename.QVD&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Where Match([Field 1],'US') AND &lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NOT IsNum([Code Name]);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Nov 2016 04:18:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-IsNum-in-Load-to-remove-Numeric-Values/m-p/1201528#M874716</guid>
      <dc:creator>bohravanraj</dc:creator>
      <dc:date>2016-11-01T04:18:03Z</dc:date>
    </item>
    <item>
      <title>Re: Using IsNum() in Load to remove Numeric Values</title>
      <link>https://community.qlik.com/t5/QlikView/Using-IsNum-in-Load-to-remove-Numeric-Values/m-p/1201529#M874717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Weston,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just correcting above statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;LOAD Field1,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Field2&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FROM&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;(ooxml, embedded labels, table is Sheet1) where IsNum(Field2) and &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;[Field 1]='US'&lt;/SPAN&gt;;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Nov 2016 04:22:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-IsNum-in-Load-to-remove-Numeric-Values/m-p/1201529#M874717</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-11-01T04:22:53Z</dc:date>
    </item>
    <item>
      <title>Re: Using IsNum() in Load to remove Numeric Values</title>
      <link>https://community.qlik.com/t5/QlikView/Using-IsNum-in-Load-to-remove-Numeric-Values/m-p/1201530#M874718</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 this below &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Temp:&lt;/P&gt;&lt;P&gt;LOAD * Inline [&lt;/P&gt;&lt;P&gt;File, Value&lt;/P&gt;&lt;P&gt;123, 10000&lt;/P&gt;&lt;P&gt;abc, 20000&lt;/P&gt;&lt;P&gt;123abc, 30000&lt;/P&gt;&lt;P&gt;234, 40000&lt;/P&gt;&lt;P&gt;bbb, 50000&lt;/P&gt;&lt;P&gt;23dv,45236&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Test:&lt;/P&gt;&lt;P&gt;LOAD *, 'Test' as Test&lt;/P&gt;&lt;P&gt;Resident Temp Where IsText(File);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table Temp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Nov 2016 05:08:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-IsNum-in-Load-to-remove-Numeric-Values/m-p/1201530#M874718</guid>
      <dc:creator />
      <dc:date>2016-11-01T05:08:36Z</dc:date>
    </item>
    <item>
      <title>Re: Using IsNum() in Load to remove Numeric Values</title>
      <link>https://community.qlik.com/t5/QlikView/Using-IsNum-in-Load-to-remove-Numeric-Values/m-p/1201531#M874719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Weston,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check either UMA MAHESH&amp;nbsp; example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else&lt;/P&gt;&lt;P&gt;fallow&amp;nbsp; the below code&amp;nbsp; with the help of Not isnum() function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Temp:&lt;/P&gt;&lt;P&gt;LOAD * Inline [&lt;/P&gt;&lt;P&gt;File, Value&lt;/P&gt;&lt;P&gt;123, 10000&lt;/P&gt;&lt;P&gt;abc, 20000&lt;/P&gt;&lt;P&gt;123abc, 30000&lt;/P&gt;&lt;P&gt;234, 40000&lt;/P&gt;&lt;P&gt;bbb, 50000&lt;/P&gt;&lt;P&gt;23dv,45236&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Test:&lt;/P&gt;&lt;P&gt;LOAD *, 'Test' as Test&lt;/P&gt;&lt;P&gt;Resident Temp Where not IsNum(File);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Nov 2016 05:46:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-IsNum-in-Load-to-remove-Numeric-Values/m-p/1201531#M874719</guid>
      <dc:creator>ramasaisaksoft</dc:creator>
      <dc:date>2016-11-01T05:46:15Z</dc:date>
    </item>
    <item>
      <title>Re: Using IsNum() in Load to remove Numeric Values</title>
      <link>https://community.qlik.com/t5/QlikView/Using-IsNum-in-Load-to-remove-Numeric-Values/m-p/1201532#M874720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tanil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the response. I forgot to include the "AND" in my post, but I did have it in my script. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Good catch though!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Nov 2016 13:46:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-IsNum-in-Load-to-remove-Numeric-Values/m-p/1201532#M874720</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-11-01T13:46:34Z</dc:date>
    </item>
    <item>
      <title>Re: Using IsNum() in Load to remove Numeric Values</title>
      <link>https://community.qlik.com/t5/QlikView/Using-IsNum-in-Load-to-remove-Numeric-Values/m-p/1201533#M874721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vanraj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using the 'NOT' worked perfectly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you know why "NOT IsNUM()" pulls out the numeric fields but IsNUM()=0 not do it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Nov 2016 13:48:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-IsNum-in-Load-to-remove-Numeric-Values/m-p/1201533#M874721</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-11-01T13:48:14Z</dc:date>
    </item>
    <item>
      <title>Re: Using IsNum() in Load to remove Numeric Values</title>
      <link>https://community.qlik.com/t5/QlikView/Using-IsNum-in-Load-to-remove-Numeric-Values/m-p/1201534#M874722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Hello Weston,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Actually, what I meant to say was you missed to add "And" statement (You said you forgot to include "And", so that's okay &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;SPAN class="emoticon-inline emoticon_happy" style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;/SPAN&gt;) and Isnum function syntax is not correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;The below line&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;IsNum([Code Name]&lt;STRONG style="font-style: inherit; font-family: inherit; color: #ff0000;"&gt;=0&lt;/STRONG&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Should be&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;IsNum([Code Name]) &lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;= 0&amp;nbsp; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit; font-family: inherit;"&gt;Is this not working for you?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Nov 2016 17:39:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Using-IsNum-in-Load-to-remove-Numeric-Values/m-p/1201534#M874722</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2016-11-01T17:39:30Z</dc:date>
    </item>
  </channel>
</rss>

