<?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: List All Sheets Within a QVW file in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/List-All-Sheets-Within-a-QVW-file/m-p/537203#M200791</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is a solution that won't require you to use prj folders or macros. You would need to be on QV11 for it to work or the last SR of QV10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sheets:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; filepath() as FileName,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SheetId as SheetId,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Title as Label&amp;nbsp; &lt;/P&gt;&lt;P&gt;FROM [YourAppName.QVW] (XmlSimple, Table is [DocumentSummary/Sheet]);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Replace YourAppName.QVW with the name of your QVW.&lt;/P&gt;&lt;P&gt;If you want to be super fancy you could wrap this in a loop that reads your entire deployment and voila you have a list of all the sheets for all your apps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Oct 2013 03:02:24 GMT</pubDate>
    <dc:creator>Alexander_Thor</dc:creator>
    <dc:date>2013-10-10T03:02:24Z</dc:date>
    <item>
      <title>List All Sheets Within a QVW file</title>
      <link>https://community.qlik.com/t5/QlikView/List-All-Sheets-Within-a-QVW-file/m-p/537200#M200788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to generate a list of all the sheets (sheet names &amp;amp; id's) within a QVW file without typing them individually in an inline load or into a text box?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Oct 2013 23:20:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-All-Sheets-Within-a-QVW-file/m-p/537200#M200788</guid>
      <dc:creator />
      <dc:date>2013-10-09T23:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: List All Sheets Within a QVW file</title>
      <link>https://community.qlik.com/t5/QlikView/List-All-Sheets-Within-a-QVW-file/m-p/537201#M200789</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To get the sheet id's, you can read the 'QlikviewProject.xml' in the &amp;lt;appl&amp;gt;-prj folder&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;E.g.&lt;/P&gt;&lt;P&gt;PrjSheetProperties:&lt;/P&gt;&lt;P&gt;LOAD SheetId,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; IsActive&lt;/P&gt;&lt;P&gt;FROM [test-prj\QlikViewProject.xml] (XmlSimple, Table is [PrjQlikViewProject/SHEETS/PrjSheetProperties]);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can get sheet names, from the &amp;lt;sheetid&amp;gt;.xml files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Oct 2013 00:49:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-All-Sheets-Within-a-QVW-file/m-p/537201#M200789</guid>
      <dc:creator>nagaiank</dc:creator>
      <dc:date>2013-10-10T00:49:58Z</dc:date>
    </item>
    <item>
      <title>Re: List All Sheets Within a QVW file</title>
      <link>https://community.qlik.com/t5/QlikView/List-All-Sheets-Within-a-QVW-file/m-p/537202#M200790</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;see that post&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/message/23358#23358"&gt;http://community.qlik.com/message/23358#23358&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Oct 2013 02:22:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-All-Sheets-Within-a-QVW-file/m-p/537202#M200790</guid>
      <dc:creator />
      <dc:date>2013-10-10T02:22:22Z</dc:date>
    </item>
    <item>
      <title>Re: List All Sheets Within a QVW file</title>
      <link>https://community.qlik.com/t5/QlikView/List-All-Sheets-Within-a-QVW-file/m-p/537203#M200791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is a solution that won't require you to use prj folders or macros. You would need to be on QV11 for it to work or the last SR of QV10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sheets:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; filepath() as FileName,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SheetId as SheetId,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Title as Label&amp;nbsp; &lt;/P&gt;&lt;P&gt;FROM [YourAppName.QVW] (XmlSimple, Table is [DocumentSummary/Sheet]);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Replace YourAppName.QVW with the name of your QVW.&lt;/P&gt;&lt;P&gt;If you want to be super fancy you could wrap this in a loop that reads your entire deployment and voila you have a list of all the sheets for all your apps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Oct 2013 03:02:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-All-Sheets-Within-a-QVW-file/m-p/537203#M200791</guid>
      <dc:creator>Alexander_Thor</dc:creator>
      <dc:date>2013-10-10T03:02:24Z</dc:date>
    </item>
    <item>
      <title>Re: List All Sheets Within a QVW file</title>
      <link>https://community.qlik.com/t5/QlikView/List-All-Sheets-Within-a-QVW-file/m-p/537204#M200792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check this out&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Oct 2013 04:30:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/List-All-Sheets-Within-a-QVW-file/m-p/537204#M200792</guid>
      <dc:creator>saumyashah90</dc:creator>
      <dc:date>2013-10-10T04:30:31Z</dc:date>
    </item>
  </channel>
</rss>

