<?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: Need to capture only Text value in List box in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Need-to-capture-only-Text-value-in-List-box/m-p/1132137#M910832</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Balraj,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Basically I am having Columns with Integer, Text and NULL values. In my front end, I need to capture only Text and NULL values and need to ignore integer values. Above suggestion given by Sunny is working fine, where I am getting only TEXT values but my NULL value (Empty cell) is lost. The link which u shared is different I guess so. Thanks in advance Balraj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Jun 2016 13:35:57 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-06-16T13:35:57Z</dc:date>
    <item>
      <title>Need to capture only Text value in List box</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-capture-only-Text-value-in-List-box/m-p/1132132#M910821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I have a list box which has both "Integer" and "Text" items. I need to capture only "Text" and need to ignore "Integer" from the list. Thanks in advance.&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/Need-to-capture-only-Text-value-in-List-box/m-p/1132132#M910821</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Need to capture only Text value in List box</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-capture-only-Text-value-in-List-box/m-p/1132133#M910823</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can try below expression,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If(IsText(Left(FieldName,1)), FieldName)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 13:17:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-capture-only-Text-value-in-List-box/m-p/1132133#M910823</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2016-06-16T13:17:32Z</dc:date>
    </item>
    <item>
      <title>Re: Need to capture only Text value in List box</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-capture-only-Text-value-in-List-box/m-p/1132134#M910825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be like this in the script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Where IsText(FieldName);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or this in the front end list box expression:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If(IsText(FieldName), FieldName)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 13:18:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-capture-only-Text-value-in-List-box/m-p/1132134#M910825</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-06-16T13:18:39Z</dc:date>
    </item>
    <item>
      <title>Re: Need to capture only Text value in List box</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-capture-only-Text-value-in-List-box/m-p/1132135#M910827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Something like this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/qlik-blogpost/4544"&gt;PurgeChar and KeepChar Functions&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 13:21:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-capture-only-Text-value-in-List-box/m-p/1132135#M910827</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-16T13:21:07Z</dc:date>
    </item>
    <item>
      <title>Re: Need to capture only Text value in List box</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-capture-only-Text-value-in-List-box/m-p/1132136#M910829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny &amp;amp; Tamil,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Thanks for your help. But once I include the "where" condition in the script, I am getting only "Text" which is correct. But, I am losing my Blank rows. Attached screen shot for your reference. Sry for troubling u.&lt;IMG alt="Script Page.jpg" class="jive-image image-1" src="/legacyfs/online/128134_Script Page.jpg" style="height: 349px; width: 620px;" /&gt;&lt;IMG alt="Front End.jpg" class="jive-image image-2" src="/legacyfs/online/128144_Front End.jpg" style="height: 349px; width: 620px;" /&gt; ! !&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 13:30:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-capture-only-Text-value-in-List-box/m-p/1132136#M910829</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-16T13:30:37Z</dc:date>
    </item>
    <item>
      <title>Re: Need to capture only Text value in List box</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-capture-only-Text-value-in-List-box/m-p/1132137#M910832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Balraj,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Basically I am having Columns with Integer, Text and NULL values. In my front end, I need to capture only Text and NULL values and need to ignore integer values. Above suggestion given by Sunny is working fine, where I am getting only TEXT values but my NULL value (Empty cell) is lost. The link which u shared is different I guess so. Thanks in advance Balraj.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 13:35:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-capture-only-Text-value-in-List-box/m-p/1132137#M910832</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-16T13:35:57Z</dc:date>
    </item>
    <item>
      <title>Re: Need to capture only Text value in List box</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-capture-only-Text-value-in-List-box/m-p/1132138#M910834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG alt="Text left to ignore integer values.jpg" class="jive-image image-1" src="/legacyfs/online/128145_Text left to ignore integer values.jpg" style="height: 349px; width: 620px;" /&gt;Hi Tamil,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Thanks for you Quick reply. I implemented u r formula, But it is duplicating the column values. Attached screen shot for your reference.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 13:41:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-capture-only-Text-value-in-List-box/m-p/1132138#M910834</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-16T13:41:48Z</dc:date>
    </item>
    <item>
      <title>Re: Need to capture only Text value in List box</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-capture-only-Text-value-in-List-box/m-p/1132139#M910837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this may be&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Where IsText(FieldName) or Len(Trim(FieldName)) = 0;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 13:56:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-capture-only-Text-value-in-List-box/m-p/1132139#M910837</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-06-16T13:56:34Z</dc:date>
    </item>
    <item>
      <title>Re: Need to capture only Text value in List box</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-capture-only-Text-value-in-List-box/m-p/1132140#M910839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;NULLASVALUE *;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SET NullValue = ' ';&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Directory;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Name, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Department, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp; [Arrival Place],&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Departure Place], &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Arrival Time], &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Departure Time], &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Total Journey Hours], &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Amount, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Booking Date]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Example1.xlsx&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(ooxml, embedded labels, table is Sheet1)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;where IsText([Arrival Place]) or Len(Trim([Arrival Place])) = 0;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 13:57:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-capture-only-Text-value-in-List-box/m-p/1132140#M910839</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-06-16T13:57:49Z</dc:date>
    </item>
    <item>
      <title>Re: Need to capture only Text value in List box</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-capture-only-Text-value-in-List-box/m-p/1132141#M910840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Perfect Sunny, Thanks a lot, Checked the above script and working fine. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 14:01:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-capture-only-Text-value-in-List-box/m-p/1132141#M910840</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-16T14:01:39Z</dc:date>
    </item>
    <item>
      <title>Re: Need to capture only Text value in List box</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-capture-only-Text-value-in-List-box/m-p/1132142#M910841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;RubanDoss,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sunny is too fast.You can use his solution.&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 14:13:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-capture-only-Text-value-in-List-box/m-p/1132142#M910841</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2016-06-16T14:13:56Z</dc:date>
    </item>
    <item>
      <title>Re: Need to capture only Text value in List box</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-capture-only-Text-value-in-List-box/m-p/1132143#M910842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ha ha ha. Still u helped me Tamil. Thanks for u r reply. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 14:20:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-capture-only-Text-value-in-List-box/m-p/1132143#M910842</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-16T14:20:02Z</dc:date>
    </item>
    <item>
      <title>Re: Need to capture only Text value in List box</title>
      <link>https://community.qlik.com/t5/QlikView/Need-to-capture-only-Text-value-in-List-box/m-p/1132144#M910843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;RubanDoss,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please mark Sunny's answer as correct and close the thread. It might helps others.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 16:16:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-to-capture-only-Text-value-in-List-box/m-p/1132144#M910843</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2016-06-16T16:16:19Z</dc:date>
    </item>
  </channel>
</rss>

