<?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: find in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/find/m-p/1377560#M802311</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;please find below script. the below &lt;SPAN style="font-size: 10pt;"&gt;QVSlist&lt;/SPAN&gt; table should give you the table name associated qvs and their count.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;QVSlist:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;STRONG style=": ; color: #0000ff;"&gt;load&lt;/STRONG&gt; '' &lt;SPAN style="color: #0000ff;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;QVSName&lt;/SPAN&gt;,&lt;BR /&gt; '' &lt;SPAN style="color: #0000ff;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Tablelist&lt;/SPAN&gt;,&lt;BR /&gt; '' &lt;SPAN style="color: #0000ff;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Count&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN style="color: #0000ff;"&gt;AutoGenerate&lt;/SPAN&gt; 1;&lt;BR /&gt; &lt;BR /&gt; Tablelist:&lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;LOAD&lt;/STRONG&gt; &lt;BR /&gt; &lt;SPAN style="color: #800000;"&gt;TableName&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN style="color: #0000ff;"&gt;FROM&lt;/SPAN&gt;&lt;BR /&gt; Tablelist.xlsx (&lt;SPAN style="color: #0000ff;"&gt;ooxml&lt;/SPAN&gt;, &lt;SPAN style="color: #0000ff;"&gt;no&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;labels&lt;/SPAN&gt;, &lt;SPAN style="color: #0000ff;"&gt;table&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;is&lt;/SPAN&gt; Sheet1);&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;SUB&lt;/STRONG&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;DoDir&lt;/STRONG&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;(&lt;/STRONG&gt;ROOT&lt;STRONG style=": ; color: #0000ff;"&gt;)&lt;/STRONG&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;FOR&lt;/STRONG&gt; &lt;SPAN style="color: #0000ff;"&gt;each&lt;/SPAN&gt; &lt;STRONG&gt;&lt;EM style=": ; color: #808080;"&gt;File&lt;/EM&gt;&lt;/STRONG&gt; &lt;SPAN style="color: #0000ff;"&gt;in&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;filelist&lt;/SPAN&gt;( &lt;SPAN style="color: #800000;"&gt;ROOT&lt;/SPAN&gt; &amp;amp; '\*.qvs')&lt;BR /&gt; &lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;TRACE&lt;/STRONG&gt; &lt;STRONG&gt;&lt;EM style=": ; color: #808080;"&gt;$(File)&lt;/EM&gt;&lt;/STRONG&gt;;&lt;BR /&gt; &lt;BR /&gt; QVS:&lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;LOAD&lt;/STRONG&gt;&amp;nbsp; &lt;BR /&gt; &lt;SPAN style="color: #800000;"&gt;filebasename&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Tablelist&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN style="color: #0000ff;"&gt;FROM&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;[$(File)]&lt;/SPAN&gt;;&lt;BR /&gt; &lt;SPAN style="color: #0000ff;"&gt;inner&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;join&lt;/SPAN&gt; &lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;load&lt;/STRONG&gt; * &lt;SPAN style="color: #0000ff;"&gt;resident&lt;/SPAN&gt; Tablelist;&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;load&lt;/STRONG&gt; '$(File)' &lt;SPAN style="color: #0000ff;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;QVSName&lt;/SPAN&gt;,&lt;BR /&gt; &lt;SPAN style="color: #800000;"&gt;Tablelist&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;TableFound&lt;/SPAN&gt;,&lt;BR /&gt; &lt;SPAN style="color: #0000ff;"&gt;count&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;TableFound&lt;/SPAN&gt;) &lt;SPAN style="color: #0000ff;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Count&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN style="color: #0000ff;"&gt;resident&lt;/SPAN&gt;&lt;BR /&gt; QVS&lt;BR /&gt; &lt;SPAN style="color: #0000ff;"&gt;group&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;by&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;QVSName&lt;/SPAN&gt;,&lt;SPAN style="color: #800000;"&gt;TableFound&lt;/SPAN&gt; ;&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;NEXT&lt;/STRONG&gt; &lt;STRONG&gt;&lt;EM style=": ; color: #808080;"&gt;File&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;END&lt;/STRONG&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;SUB&lt;/STRONG&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;CALL&lt;/STRONG&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;DoDir&lt;/STRONG&gt;('directory path')&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Nov 2017 11:33:14 GMT</pubDate>
    <dc:creator>madhumitha</dc:creator>
    <dc:date>2017-11-13T11:33:14Z</dc:date>
    <item>
      <title>find</title>
      <link>https://community.qlik.com/t5/QlikView/find/m-p/1377559#M802310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a table name list. I would like to go through the qvs scripts and find whether these tables are used in the individual qvs scripts if yes give me the qvs script filename - the file name exist with in the script as filebasename&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/find/m-p/1377559#M802310</guid>
      <dc:creator>raadwiptec</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: find</title>
      <link>https://community.qlik.com/t5/QlikView/find/m-p/1377560#M802311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;please find below script. the below &lt;SPAN style="font-size: 10pt;"&gt;QVSlist&lt;/SPAN&gt; table should give you the table name associated qvs and their count.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;SPAN style="font-size: 10pt;"&gt;QVSlist:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;STRONG style=": ; color: #0000ff;"&gt;load&lt;/STRONG&gt; '' &lt;SPAN style="color: #0000ff;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;QVSName&lt;/SPAN&gt;,&lt;BR /&gt; '' &lt;SPAN style="color: #0000ff;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Tablelist&lt;/SPAN&gt;,&lt;BR /&gt; '' &lt;SPAN style="color: #0000ff;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Count&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN style="color: #0000ff;"&gt;AutoGenerate&lt;/SPAN&gt; 1;&lt;BR /&gt; &lt;BR /&gt; Tablelist:&lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;LOAD&lt;/STRONG&gt; &lt;BR /&gt; &lt;SPAN style="color: #800000;"&gt;TableName&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN style="color: #0000ff;"&gt;FROM&lt;/SPAN&gt;&lt;BR /&gt; Tablelist.xlsx (&lt;SPAN style="color: #0000ff;"&gt;ooxml&lt;/SPAN&gt;, &lt;SPAN style="color: #0000ff;"&gt;no&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;labels&lt;/SPAN&gt;, &lt;SPAN style="color: #0000ff;"&gt;table&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;is&lt;/SPAN&gt; Sheet1);&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;SUB&lt;/STRONG&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;DoDir&lt;/STRONG&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;(&lt;/STRONG&gt;ROOT&lt;STRONG style=": ; color: #0000ff;"&gt;)&lt;/STRONG&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;FOR&lt;/STRONG&gt; &lt;SPAN style="color: #0000ff;"&gt;each&lt;/SPAN&gt; &lt;STRONG&gt;&lt;EM style=": ; color: #808080;"&gt;File&lt;/EM&gt;&lt;/STRONG&gt; &lt;SPAN style="color: #0000ff;"&gt;in&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;filelist&lt;/SPAN&gt;( &lt;SPAN style="color: #800000;"&gt;ROOT&lt;/SPAN&gt; &amp;amp; '\*.qvs')&lt;BR /&gt; &lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;TRACE&lt;/STRONG&gt; &lt;STRONG&gt;&lt;EM style=": ; color: #808080;"&gt;$(File)&lt;/EM&gt;&lt;/STRONG&gt;;&lt;BR /&gt; &lt;BR /&gt; QVS:&lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;LOAD&lt;/STRONG&gt;&amp;nbsp; &lt;BR /&gt; &lt;SPAN style="color: #800000;"&gt;filebasename&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Tablelist&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN style="color: #0000ff;"&gt;FROM&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;[$(File)]&lt;/SPAN&gt;;&lt;BR /&gt; &lt;SPAN style="color: #0000ff;"&gt;inner&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;join&lt;/SPAN&gt; &lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;load&lt;/STRONG&gt; * &lt;SPAN style="color: #0000ff;"&gt;resident&lt;/SPAN&gt; Tablelist;&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;load&lt;/STRONG&gt; '$(File)' &lt;SPAN style="color: #0000ff;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;QVSName&lt;/SPAN&gt;,&lt;BR /&gt; &lt;SPAN style="color: #800000;"&gt;Tablelist&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;TableFound&lt;/SPAN&gt;,&lt;BR /&gt; &lt;SPAN style="color: #0000ff;"&gt;count&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;TableFound&lt;/SPAN&gt;) &lt;SPAN style="color: #0000ff;"&gt;as&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;Count&lt;/SPAN&gt;&lt;BR /&gt; &lt;SPAN style="color: #0000ff;"&gt;resident&lt;/SPAN&gt;&lt;BR /&gt; QVS&lt;BR /&gt; &lt;SPAN style="color: #0000ff;"&gt;group&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;by&lt;/SPAN&gt; &lt;SPAN style="color: #800000;"&gt;QVSName&lt;/SPAN&gt;,&lt;SPAN style="color: #800000;"&gt;TableFound&lt;/SPAN&gt; ;&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;NEXT&lt;/STRONG&gt; &lt;STRONG&gt;&lt;EM style=": ; color: #808080;"&gt;File&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;END&lt;/STRONG&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;SUB&lt;/STRONG&gt;&lt;BR /&gt; &lt;BR /&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;CALL&lt;/STRONG&gt; &lt;STRONG style=": ; color: #0000ff;"&gt;DoDir&lt;/STRONG&gt;('directory path')&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Nov 2017 11:33:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/find/m-p/1377560#M802311</guid>
      <dc:creator>madhumitha</dc:creator>
      <dc:date>2017-11-13T11:33:14Z</dc:date>
    </item>
    <item>
      <title>Re: find</title>
      <link>https://community.qlik.com/t5/QlikView/find/m-p/1377561#M802312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Madhu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If there is no filebase name .. for ex&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lets imagine if there is a load statement like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Invoice number,&lt;/P&gt;&lt;P&gt;invoice name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;from invoice.xls&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here invoice.xls is also table.. (table extracted from oracle database and placed as invoice.xls)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i retrieve details in such a situation?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Nov 2017 12:24:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/find/m-p/1377561#M802312</guid>
      <dc:creator>raadwiptec</dc:creator>
      <dc:date>2017-11-13T12:24:58Z</dc:date>
    </item>
    <item>
      <title>Re: find</title>
      <link>https://community.qlik.com/t5/QlikView/find/m-p/1377562#M802313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if those excels are placed in a directory, you still can use FileBaseName() function and load just the file names it into another table.&lt;/P&gt;&lt;P&gt;If those table are already in a qvw, then you can make use of system tables to get the list of the names.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Nov 2017 15:26:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/find/m-p/1377562#M802313</guid>
      <dc:creator>madhumitha</dc:creator>
      <dc:date>2017-11-13T15:26:19Z</dc:date>
    </item>
  </channel>
</rss>

