<?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: Import Excel in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Import-Excel/m-p/1806598#M1212183</link>
    <description>&lt;P&gt;Take a look at this script.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;***/&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Inputs:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;CrossTable(InputName,InputValue)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;LOAD * inline [&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;ID,A,B,C&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;1,1,2,3&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;2,4,5,6&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;3,7,8,9&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;]&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Store Inputs into Inputs.qvd (qvd); //Use this QVD as source when importing into new app.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;//Use input source from row 20... or load the data from Inputs.qvd before looping through the rows generating your variables.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;FOR _row = 1 to NoOfRows('Inputs')&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;LET vVar= peek('InputName', '$(_row)','Inputs')&amp;amp;peek('ID', '$(_row)','Inputs');&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;LET vVal= peek('InputValue','$(_row)','Inputs');&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;LET $(vVar) = '$(vVal)';&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;next&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Vegar_0-1620650813202.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/54630i7BA6B0BD0CB31A63/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Vegar_0-1620650813202.png" alt="Vegar_0-1620650813202.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See attached qvw&lt;/P&gt;</description>
    <pubDate>Mon, 10 May 2021 12:47:02 GMT</pubDate>
    <dc:creator>Vegar</dc:creator>
    <dc:date>2021-05-10T12:47:02Z</dc:date>
    <item>
      <title>Import Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Import-Excel/m-p/1806414#M1212149</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;First step:&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;I want to load xls. file and assign every cell value to a variable:&lt;/P&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;A&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;B&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;&lt;STRONG&gt;C&lt;/STRONG&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;1&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;2&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;4&lt;/TD&gt;&lt;TD&gt;5&lt;/TD&gt;&lt;TD&gt;6&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;STRONG&gt;3&lt;/STRONG&gt;&lt;/TD&gt;&lt;TD&gt;7&lt;/TD&gt;&lt;TD&gt;8&lt;/TD&gt;&lt;TD&gt;9&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;BR /&gt;The variables should be defined as &lt;EM&gt;&lt;STRONG&gt;A1 ... C3&lt;/STRONG&gt;&lt;/EM&gt;.&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Second step:&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;A1...C3 should be stored in a new Field called e.g. &lt;EM&gt;&lt;STRONG&gt;Input&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;I need &lt;EM&gt;&lt;STRONG&gt;Input&lt;/STRONG&gt; &lt;/EM&gt;in another qvw.&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;Third step:&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;After loading Input in the new qvw. I need the variables &lt;EM&gt;&lt;STRONG&gt;A1...C3&lt;/STRONG&gt;&lt;/EM&gt; again.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help please?&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;</description>
      <pubDate>Sun, 09 May 2021 19:14:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Import-Excel/m-p/1806414#M1212149</guid>
      <dc:creator>AmCh</dc:creator>
      <dc:date>2021-05-09T19:14:48Z</dc:date>
    </item>
    <item>
      <title>Re: Import Excel</title>
      <link>https://community.qlik.com/t5/QlikView/Import-Excel/m-p/1806598#M1212183</link>
      <description>&lt;P&gt;Take a look at this script.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;***/&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Inputs:&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;CrossTable(InputName,InputValue)&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;LOAD * inline [&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;ID,A,B,C&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;1,1,2,3&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;2,4,5,6&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;3,7,8,9&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;]&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Store Inputs into Inputs.qvd (qvd); //Use this QVD as source when importing into new app.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier"&gt;//Use input source from row 20... or load the data from Inputs.qvd before looping through the rows generating your variables.&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;FOR _row = 1 to NoOfRows('Inputs')&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;LET vVar= peek('InputName', '$(_row)','Inputs')&amp;amp;peek('ID', '$(_row)','Inputs');&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;LET vVal= peek('InputValue','$(_row)','Inputs');&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;LET $(vVar) = '$(vVal)';&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;next&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Vegar_0-1620650813202.png" style="width: 400px;"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/54630i7BA6B0BD0CB31A63/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Vegar_0-1620650813202.png" alt="Vegar_0-1620650813202.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See attached qvw&lt;/P&gt;</description>
      <pubDate>Mon, 10 May 2021 12:47:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Import-Excel/m-p/1806598#M1212183</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2021-05-10T12:47:02Z</dc:date>
    </item>
  </channel>
</rss>

