<?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: &amp;quot;Find&amp;quot; functionality for load script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/quot-Find-quot-functionality-for-load-script/m-p/518458#M193611</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yess&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can load the data with the below mentioned code which will give you null values Displyed if they are present.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load *,&lt;/P&gt;&lt;P&gt;if(Isnull(Field_Name),'NULL',Field_Name) as NEW_FIELD&lt;/P&gt;&lt;P&gt;From Source_NAME;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load this and look at frontend by taking List box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Nilesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 03 Dec 2013 09:22:17 GMT</pubDate>
    <dc:creator>nilesh_gangurde</dc:creator>
    <dc:date>2013-12-03T09:22:17Z</dc:date>
    <item>
      <title>"Find" functionality for load script</title>
      <link>https://community.qlik.com/t5/QlikView/quot-Find-quot-functionality-for-load-script/m-p/518455#M193608</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;BR /&gt;Does anyone know how to find a certain character in a field and return at which position is lies?&amp;nbsp; This is similar to the functionality of "find" within excel.&amp;nbsp; I'm pulling a blank at the moment but I'm sure it must exist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Thanks&lt;/P&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Dec 2013 09:11:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/quot-Find-quot-functionality-for-load-script/m-p/518455#M193608</guid>
      <dc:creator />
      <dc:date>2013-12-03T09:11:57Z</dc:date>
    </item>
    <item>
      <title>Re: "Find" functionality for load script</title>
      <link>https://community.qlik.com/t5/QlikView/quot-Find-quot-functionality-for-load-script/m-p/518456#M193609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Steve&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you mean find a string on the load script code, then Ctrl-F for find and Ctrl-H for replace.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Perhaps you meant something different?\&lt;/P&gt;&lt;P&gt;Jonathan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Dec 2013 09:18:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/quot-Find-quot-functionality-for-load-script/m-p/518456#M193609</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2013-12-03T09:18:39Z</dc:date>
    </item>
    <item>
      <title>Re: "Find" functionality for load script</title>
      <link>https://community.qlik.com/t5/QlikView/quot-Find-quot-functionality-for-load-script/m-p/518457#M193610</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 using Index() in qlikview&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Code"&gt;Index( 'abcdefg', 'cd' )&lt;/SPAN&gt; returns &lt;SPAN class="Italic"&gt;3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check help file for more details.&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, 03 Dec 2013 09:18:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/quot-Find-quot-functionality-for-load-script/m-p/518457#M193610</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2013-12-03T09:18:53Z</dc:date>
    </item>
    <item>
      <title>Re: "Find" functionality for load script</title>
      <link>https://community.qlik.com/t5/QlikView/quot-Find-quot-functionality-for-load-script/m-p/518458#M193611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yess&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can load the data with the below mentioned code which will give you null values Displyed if they are present.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;load *,&lt;/P&gt;&lt;P&gt;if(Isnull(Field_Name),'NULL',Field_Name) as NEW_FIELD&lt;/P&gt;&lt;P&gt;From Source_NAME;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load this and look at frontend by taking List box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Nilesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Dec 2013 09:22:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/quot-Find-quot-functionality-for-load-script/m-p/518458#M193611</guid>
      <dc:creator>nilesh_gangurde</dc:creator>
      <dc:date>2013-12-03T09:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: "Find" functionality for load script</title>
      <link>https://community.qlik.com/t5/QlikView/quot-Find-quot-functionality-for-load-script/m-p/518459#M193612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi Stephen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can use Index function in QlikView.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is Similar to find in excel, instring in sql&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Dec 2013 09:32:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/quot-Find-quot-functionality-for-load-script/m-p/518459#M193612</guid>
      <dc:creator />
      <dc:date>2013-12-03T09:32:05Z</dc:date>
    </item>
  </channel>
</rss>

