<?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: Get excel sheet names as field value in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Get-excel-sheet-names-as-field-value/m-p/353389#M131107</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;You just need to add an extra line to the load script to put the variable out to a field:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;MyTableName:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;LOAD&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mid('$(vSheet)', 1, 3) as [Month Name],&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ....&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Arial; font-size: 12px; background-color: #eef4f9; color: #000000;"&gt;From &lt;D&gt;(biff,embedded labels,table is $(vSheet));&lt;/D&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Arial; font-size: 12px; background-color: #eef4f9; color: #000000;"&gt;If you want the months to sort correctly you will need to add a bit more code:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Arial; font-size: 12px; background-color: #eef4f9; color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(Date#('01 ' &amp;amp; mid('$(vSheet)', 1, 3) &amp;amp; ' 2000', 'DD MMM YYYY')) as [Month]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Arial; font-size: 12px; background-color: #eef4f9; color: #000000;"&gt;This will convert the text to a full date, before converting it back to a month.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Arial; font-size: 12px; background-color: #eef4f9; color: #000000;"&gt;Hope that helps,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Arial; font-size: 12px; background-color: #eef4f9; color: #000000;"&gt;Steve&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 May 2012 08:15:41 GMT</pubDate>
    <dc:creator>stevedark</dc:creator>
    <dc:date>2012-05-16T08:15:41Z</dc:date>
    <item>
      <title>Get excel sheet names as field value</title>
      <link>https://community.qlik.com/t5/QlikView/Get-excel-sheet-names-as-field-value/m-p/353387#M131105</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 found a solution from one of the link,&amp;nbsp; to load data from different excel sheets,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for each vSheet in 'Jan$', 'Feb$','Oct$'&lt;/P&gt;&lt;P&gt;MyTableName:&lt;/P&gt;&lt;P&gt;Load ........From &lt;D&gt;(biff,embedded labels,table is $(vSheet));&lt;/D&gt;&lt;/P&gt;&lt;P&gt;next;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but is there any coding where i want to take Jan, Feb, Oct as one field name called MonthName. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so when i click on Jan only jan sheet data should populate, and so on..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2012 08:00:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-excel-sheet-names-as-field-value/m-p/353387#M131105</guid>
      <dc:creator>renjithpl</dc:creator>
      <dc:date>2012-05-16T08:00:47Z</dc:date>
    </item>
    <item>
      <title>Re: Get excel sheet names as field value</title>
      <link>https://community.qlik.com/t5/QlikView/Get-excel-sheet-names-as-field-value/m-p/353388#M131106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; You can apply triggers on sheets in Qlikview. And the trigger can make a selection on a field of you choice. So if you click a sheet, it can filter the data that is shown on that sheet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards, Robert&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2012 08:09:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-excel-sheet-names-as-field-value/m-p/353388#M131106</guid>
      <dc:creator>RSvebeck</dc:creator>
      <dc:date>2012-05-16T08:09:46Z</dc:date>
    </item>
    <item>
      <title>Re: Get excel sheet names as field value</title>
      <link>https://community.qlik.com/t5/QlikView/Get-excel-sheet-names-as-field-value/m-p/353389#M131107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;You just need to add an extra line to the load script to put the variable out to a field:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;MyTableName:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;LOAD&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN style="color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mid('$(vSheet)', 1, 3) as [Month Name],&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ....&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Arial; font-size: 12px; background-color: #eef4f9; color: #000000;"&gt;From &lt;D&gt;(biff,embedded labels,table is $(vSheet));&lt;/D&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Arial; font-size: 12px; background-color: #eef4f9; color: #000000;"&gt;If you want the months to sort correctly you will need to add a bit more code:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Arial; font-size: 12px; background-color: #eef4f9; color: #000000;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Month(Date#('01 ' &amp;amp; mid('$(vSheet)', 1, 3) &amp;amp; ' 2000', 'DD MMM YYYY')) as [Month]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Arial; font-size: 12px; background-color: #eef4f9; color: #000000;"&gt;This will convert the text to a full date, before converting it back to a month.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Arial; font-size: 12px; background-color: #eef4f9; color: #000000;"&gt;Hope that helps,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Arial; font-size: 12px; background-color: #eef4f9; color: #000000;"&gt;Steve&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 May 2012 08:15:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Get-excel-sheet-names-as-field-value/m-p/353389#M131107</guid>
      <dc:creator>stevedark</dc:creator>
      <dc:date>2012-05-16T08:15:41Z</dc:date>
    </item>
  </channel>
</rss>

