<?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 get value of variable in script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/get-value-of-variable-in-script/m-p/165457#M37752</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mark thanks for answer so soon&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes a try to set content of the field 'sheet1' in to variable var&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Nov 2009 04:35:04 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-11-26T04:35:04Z</dc:date>
    <item>
      <title>get value of variable in script</title>
      <link>https://community.qlik.com/t5/QlikView/get-value-of-variable-in-script/m-p/165455#M37750</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey Guys&lt;/P&gt;&lt;P&gt;I have a question for yours&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need read a variable from a load something likes this&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;P&gt;LOAD [Group],&lt;BR /&gt; Name,&lt;BR /&gt; Frequency,&lt;BR /&gt; Tipe,&lt;BR /&gt; sheet1 //+++++this a read variables&lt;BR /&gt; FROM C:\Repository\frecuency.xls (biff, embedded labels, table is Hoja1$)&lt;BR /&gt; WHERE(Name)='$(File)';&lt;/P&gt;&lt;P&gt;var = sheet ; //+++++must be read value of variable&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;P&gt;When i run this test , return a null value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help please !!!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Nov 2009 04:13:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/get-value-of-variable-in-script/m-p/165455#M37750</guid>
      <dc:creator />
      <dc:date>2009-11-26T04:13:56Z</dc:date>
    </item>
    <item>
      <title>get value of variable in script</title>
      <link>https://community.qlik.com/t5/QlikView/get-value-of-variable-in-script/m-p/165456#M37751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Now sure if it is just a typo, but you load field 'sheet1' and set the variable to the content of field 'sheet'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Nov 2009 04:24:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/get-value-of-variable-in-script/m-p/165456#M37751</guid>
      <dc:creator />
      <dc:date>2009-11-26T04:24:10Z</dc:date>
    </item>
    <item>
      <title>get value of variable in script</title>
      <link>https://community.qlik.com/t5/QlikView/get-value-of-variable-in-script/m-p/165457#M37752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mark thanks for answer so soon&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes a try to set content of the field 'sheet1' in to variable var&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Nov 2009 04:35:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/get-value-of-variable-in-script/m-p/165457#M37752</guid>
      <dc:creator />
      <dc:date>2009-11-26T04:35:04Z</dc:date>
    </item>
    <item>
      <title>get value of variable in script</title>
      <link>https://community.qlik.com/t5/QlikView/get-value-of-variable-in-script/m-p/165458#M37753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You won't be able to fill one variable with all the content of field 'sheet1', since that field will probably contain more than one value. A variable can only contain one value at a time.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Nov 2009 05:12:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/get-value-of-variable-in-script/m-p/165458#M37753</guid>
      <dc:creator />
      <dc:date>2009-11-26T05:12:07Z</dc:date>
    </item>
    <item>
      <title>get value of variable in script</title>
      <link>https://community.qlik.com/t5/QlikView/get-value-of-variable-in-script/m-p/165459#M37754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If sheet1 has the same value for every row or if you want to pick a specific row value from sheet1 you can use peek() to pull it into a variable:&lt;/P&gt;&lt;P&gt;Let vVariable = peek('sheet1',-1,'TableName');&lt;/P&gt;&lt;P&gt;The second parameter is set to -1 which means the very last row. 0 is the first row and n is the n:th row. Any negative value starts from the bottom of the table and goes backwards. Hope this makes sense.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Nov 2009 09:25:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/get-value-of-variable-in-script/m-p/165459#M37754</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-11-26T09:25:56Z</dc:date>
    </item>
  </channel>
</rss>

