<?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: Variable evaluation for excel sheet name in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Variable-evaluation-for-excel-sheet-name/m-p/869720#M304107</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not working.&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/89028_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Jun 2015 06:06:42 GMT</pubDate>
    <dc:creator>tamilarasu</dc:creator>
    <dc:date>2015-06-11T06:06:42Z</dc:date>
    <item>
      <title>Variable evaluation for excel sheet name</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-evaluation-for-excel-sheet-name/m-p/869718#M304105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;IMG __jive_id="89027" alt="colorful-hello-text-smiley-emoticon.gif" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/89027_colorful-hello-text-smiley-emoticon.gif" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: verdana, geneva;"&gt;I am taking sheet names by looping through excel workbooks. After that i need to replace the double single quotes with just a single quote. I have tried the below code but its not working.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: verdana, geneva;"&gt;My &lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;vSheetName&lt;/STRONG&gt;&lt;/SPAN&gt;&amp;nbsp; value is &lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG&gt;Apr''20. &lt;/STRONG&gt;&lt;SPAN style="color: #000000;"&gt;After replace it should be&lt;/SPAN&gt;&lt;STRONG&gt; &lt;SPAN style="color: #339966;"&gt;Apr'20&lt;/SPAN&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14340005418351909" jivemacro_uid="_14340005418351909"&gt;
&lt;P&gt;Table:&lt;/P&gt;
&lt;P&gt;Load *&lt;/P&gt;
&lt;P&gt;From $(File)&lt;/P&gt;
&lt;P&gt;(ooxml, embedded labels, table is $(vSheetName), filters(&lt;/P&gt;
&lt;P&gt;Remove(Row, RowCnd(CellValue, 1, StrCnd(null)))));&lt;/P&gt;



&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: verdana, geneva;"&gt;I have tried below:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14340006439242222" jivemacro_uid="_14340006439242222"&gt;
&lt;P&gt;Table:&lt;/P&gt;
&lt;P&gt;Load *&lt;/P&gt;
&lt;P&gt;From $(File)&lt;/P&gt;
&lt;P&gt;(ooxml, embedded labels, table is $(replace(vSheetName,chr(39)&amp;amp;chr(39),chr(39))), filters(&lt;/P&gt;
&lt;P&gt;Remove(Row, RowCnd(CellValue, 1, StrCnd(null)))));&lt;/P&gt;



&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could anyone correct me?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2015 05:34:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-evaluation-for-excel-sheet-name/m-p/869718#M304105</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2015-06-11T05:34:04Z</dc:date>
    </item>
    <item>
      <title>Re: Variable evaluation for excel sheet name</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-evaluation-for-excel-sheet-name/m-p/869719#M304106</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 $(&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;chr&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(39)&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Purgechar&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;vSheetName&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;,'""')&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;chr&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(39) &lt;/SPAN&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or $(=&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;chr&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(39)&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Purgechar&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;vSheetName&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;,'""')&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;chr&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(39) &lt;/SPAN&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;Sushil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2015 05:59:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-evaluation-for-excel-sheet-name/m-p/869719#M304106</guid>
      <dc:creator>sushil353</dc:creator>
      <dc:date>2015-06-11T05:59:57Z</dc:date>
    </item>
    <item>
      <title>Re: Variable evaluation for excel sheet name</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-evaluation-for-excel-sheet-name/m-p/869720#M304107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not working.&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/89028_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2015 06:06:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-evaluation-for-excel-sheet-name/m-p/869720#M304107</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2015-06-11T06:06:42Z</dc:date>
    </item>
    <item>
      <title>Re: Variable evaluation for excel sheet name</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-evaluation-for-excel-sheet-name/m-p/869721#M304108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tamil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer this thread &lt;A _jive_internal="true" href="https://community.qlik.com/thread/3915"&gt;https://community.qlik.com/thread/3915&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2015 06:12:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-evaluation-for-excel-sheet-name/m-p/869721#M304108</guid>
      <dc:creator>Siva_Sankar</dc:creator>
      <dc:date>2015-06-11T06:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: Variable evaluation for excel sheet name</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-evaluation-for-excel-sheet-name/m-p/869722#M304109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Siva,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried but not working as expected. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2015 07:03:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-evaluation-for-excel-sheet-name/m-p/869722#M304109</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2015-06-11T07:03:28Z</dc:date>
    </item>
    <item>
      <title>Re: Variable evaluation for excel sheet name</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-evaluation-for-excel-sheet-name/m-p/869723#M304110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can you upload your file?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2015 07:06:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-evaluation-for-excel-sheet-name/m-p/869723#M304110</guid>
      <dc:creator>Siva_Sankar</dc:creator>
      <dc:date>2015-06-11T07:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: Variable evaluation for excel sheet name</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-evaluation-for-excel-sheet-name/m-p/869724#M304111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tamil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You already got the sheet names in single quotes in yesterday's post. May i know how you got the double quotes?? find the attachment&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2015 07:24:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-evaluation-for-excel-sheet-name/m-p/869724#M304111</guid>
      <dc:creator>Siva_Sankar</dc:creator>
      <dc:date>2015-06-11T07:24:49Z</dc:date>
    </item>
    <item>
      <title>Re: Variable evaluation for excel sheet name</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-evaluation-for-excel-sheet-name/m-p/869725#M304112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this one: &lt;SPAN style="font-size: 8pt;"&gt;=&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;SubField&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;vSheetName&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;,'"',1)&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;chr&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(39)&amp;amp;&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;SubField&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;(&lt;/SPAN&gt;&lt;STRONG&gt;&lt;EM style=": ; color: #808080; font-size: 8pt;"&gt;vSheetName&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 8pt;"&gt;,'"',2) &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2015 07:44:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-evaluation-for-excel-sheet-name/m-p/869725#M304112</guid>
      <dc:creator>sushil353</dc:creator>
      <dc:date>2015-06-11T07:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: Variable evaluation for excel sheet name</title>
      <link>https://community.qlik.com/t5/QlikView/Variable-evaluation-for-excel-sheet-name/m-p/869726#M304113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: verdana, geneva;"&gt;Hi Siva,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: verdana, geneva;"&gt;Yes. I thought to tell u. But When I adapt the code to my original data it again showing as double quotes. I don't know the exact reason as I am getting synthetic keys and one weird error.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: verdana, geneva;"&gt;Let me explain my requirement in simple words (Say for example).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: verdana, geneva;"&gt;I have two excel files and two sheets in each workbook. I want to loop through the sheets and should concatenate the sheets (No join) . Finally I need a single table like below attached file.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em; font-family: verdana, geneva;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em; font-family: verdana, geneva;"&gt; Could you check and give me the code (I have tried to concatenate but I am getting synthetic key). I am new to this field, so I am not able to figure it out.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em; font-family: verdana, geneva;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;SPAN style="font-family: verdana, geneva;"&gt;I really appreciate your help.&lt;IMG __jive_id="89048" alt="content-and-happy-smiley-emoticon.gif" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/89048_content-and-happy-smiley-emoticon.gif" style="height: auto;" /&gt; !&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Jun 2015 07:48:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Variable-evaluation-for-excel-sheet-name/m-p/869726#M304113</guid>
      <dc:creator>tamilarasu</dc:creator>
      <dc:date>2015-06-11T07:48:41Z</dc:date>
    </item>
  </channel>
</rss>

