<?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: Generate Excel File using field name as sheet in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Generate-Excel-File-using-field-name-as-sheet/m-p/1311086#M407573</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Exactly, the seller name is the field name that i want to use as sheet name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will try your answer and tell you if it work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 25 Apr 2017 12:40:58 GMT</pubDate>
    <dc:creator />
    <dc:date>2017-04-25T12:40:58Z</dc:date>
    <item>
      <title>Generate Excel File using field name as sheet</title>
      <link>https://community.qlik.com/t5/QlikView/Generate-Excel-File-using-field-name-as-sheet/m-p/1311083#M407570</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;I want to create an automatic report in Excel format using a Seller Name as sheet name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyone help my?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Apr 2017 20:54:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Generate-Excel-File-using-field-name-as-sheet/m-p/1311083#M407570</guid>
      <dc:creator />
      <dc:date>2017-04-24T20:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: Generate Excel File using field name as sheet</title>
      <link>https://community.qlik.com/t5/QlikView/Generate-Excel-File-using-field-name-as-sheet/m-p/1311084#M407571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not 100 % your need. Would you describe more on this and title seems you need Excel report automatically. By when you want to this after clicking any button or what? And along with Field Name it is possible&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Apr 2017 01:47:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Generate-Excel-File-using-field-name-as-sheet/m-p/1311084#M407571</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-04-25T01:47:21Z</dc:date>
    </item>
    <item>
      <title>Re: Generate Excel File using field name as sheet</title>
      <link>https://community.qlik.com/t5/QlikView/Generate-Excel-File-using-field-name-as-sheet/m-p/1311085#M407572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I understand your question, the field [Name] represents the sheet name. In that case, your code would look something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Employees:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD * INLINE [&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ID_Employee, Name&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 9999, Employe Named 9999&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 4040, Employee Named 4040&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;];&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;FOR i = 1 to FieldValueCount('Name')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; LET vSheetName = FieldValue('Name', $(i));&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; CustomersSales:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; LOAD Employee as ID_Employee,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; Customer,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Product,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Monday as Sales&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; FROM &lt;C&gt;&lt;/C&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp; (ooxml, embedded labels, table is $(vSheetName));&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;NEXT i&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://masterssummit.com" rel="nofollow" target="_blank"&gt;http://masterssummit.com&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://qlikviewcookbook.com" rel="nofollow" target="_blank"&gt;http://qlikviewcookbook.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Apr 2017 01:52:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Generate-Excel-File-using-field-name-as-sheet/m-p/1311085#M407572</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2017-04-25T01:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: Generate Excel File using field name as sheet</title>
      <link>https://community.qlik.com/t5/QlikView/Generate-Excel-File-using-field-name-as-sheet/m-p/1311086#M407573</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Exactly, the seller name is the field name that i want to use as sheet name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will try your answer and tell you if it work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Apr 2017 12:40:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Generate-Excel-File-using-field-name-as-sheet/m-p/1311086#M407573</guid>
      <dc:creator />
      <dc:date>2017-04-25T12:40:58Z</dc:date>
    </item>
  </channel>
</rss>

