<?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: Load expressions from Excel and use in chart in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Load-expressions-from-Excel-and-use-in-chart/m-p/866082#M302987</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;2 Approcahes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Use a for loop for all your ID's and call them in EDIT Script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Simple way is create all your expressions in notepad file as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET Sales=Sum(Sales);&lt;/P&gt;&lt;P&gt;SET Sales1=Avg(Sales);&lt;/P&gt;&lt;P&gt;SET Sales2=Min(Sales);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Put all the above statements in notepad file and create an include statement and in your chart expressions use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$(Sales),$(Sales1) and $(Sales2)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Apr 2015 12:33:42 GMT</pubDate>
    <dc:creator>satishkurra</dc:creator>
    <dc:date>2015-04-20T12:33:42Z</dc:date>
    <item>
      <title>Load expressions from Excel and use in chart</title>
      <link>https://community.qlik.com/t5/QlikView/Load-expressions-from-Excel-and-use-in-chart/m-p/866077#M302982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: calibri, verdana, arial, sans-serif;"&gt;Dear All,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have excel sheet with expressions I want to load multiple expressions from excel in qlikview and use this expression multiple&lt;/P&gt;&lt;P&gt;charts it is giving error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please guide me how to use the same&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;Vikas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2015 10:56:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-expressions-from-Excel-and-use-in-chart/m-p/866077#M302982</guid>
      <dc:creator>vikasmahajan</dc:creator>
      <dc:date>2015-04-20T10:56:48Z</dc:date>
    </item>
    <item>
      <title>Re: Load expressions from Excel and use in chart</title>
      <link>https://community.qlik.com/t5/QlikView/Load-expressions-from-Excel-and-use-in-chart/m-p/866078#M302983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for i = 0 to NoOfRows('Exp_Test')-1&lt;/P&gt;&lt;P&gt; let vName&amp;nbsp;&amp;nbsp; = peek('Exp_Name', i, 'Exp_Test');&amp;nbsp;&amp;nbsp; // Name of the variable&lt;/P&gt;&lt;P&gt; let &lt;STRONG&gt;vNumber&lt;/STRONG&gt; = peek('ExpID', i, 'Exp_Test'); // Number of the variable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;next i&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let i = null();&lt;/P&gt;&lt;P&gt;let vName = null();&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2015 11:05:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-expressions-from-Excel-and-use-in-chart/m-p/866078#M302983</guid>
      <dc:creator>fvelascog72</dc:creator>
      <dc:date>2015-04-20T11:05:00Z</dc:date>
    </item>
    <item>
      <title>Re: Load expressions from Excel and use in chart</title>
      <link>https://community.qlik.com/t5/QlikView/Load-expressions-from-Excel-and-use-in-chart/m-p/866079#M302984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;after reload how to use the same in chart ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2015 11:36:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-expressions-from-Excel-and-use-in-chart/m-p/866079#M302984</guid>
      <dc:creator>vikasmahajan</dc:creator>
      <dc:date>2015-04-20T11:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: Load expressions from Excel and use in chart</title>
      <link>https://community.qlik.com/t5/QlikView/Load-expressions-from-Excel-and-use-in-chart/m-p/866080#M302985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Let's say your expression is Sum(Sales) in your excel and give some label as Sales $ and your variable name in chart expression should contain $(Sales)&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In excel file:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET Sales=Sum(Sales)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In chart expressions, the label can be Sales $ and expression is $(Sales). That means $(variablename)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2015 11:44:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-expressions-from-Excel-and-use-in-chart/m-p/866080#M302985</guid>
      <dc:creator>satishkurra</dc:creator>
      <dc:date>2015-04-20T11:44:13Z</dc:date>
    </item>
    <item>
      <title>Re: Load expressions from Excel and use in chart</title>
      <link>https://community.qlik.com/t5/QlikView/Load-expressions-from-Excel-and-use-in-chart/m-p/866081#M302986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your Script worked for me , Now I want to store all id with expressions and use in chart using $.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2015 11:46:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-expressions-from-Excel-and-use-in-chart/m-p/866081#M302986</guid>
      <dc:creator>vikasmahajan</dc:creator>
      <dc:date>2015-04-20T11:46:16Z</dc:date>
    </item>
    <item>
      <title>Re: Load expressions from Excel and use in chart</title>
      <link>https://community.qlik.com/t5/QlikView/Load-expressions-from-Excel-and-use-in-chart/m-p/866082#M302987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;2 Approcahes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Use a for loop for all your ID's and call them in EDIT Script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Simple way is create all your expressions in notepad file as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET Sales=Sum(Sales);&lt;/P&gt;&lt;P&gt;SET Sales1=Avg(Sales);&lt;/P&gt;&lt;P&gt;SET Sales2=Min(Sales);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Put all the above statements in notepad file and create an include statement and in your chart expressions use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$(Sales),$(Sales1) and $(Sales2)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2015 12:33:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Load-expressions-from-Excel-and-use-in-chart/m-p/866082#M302987</guid>
      <dc:creator>satishkurra</dc:creator>
      <dc:date>2015-04-20T12:33:42Z</dc:date>
    </item>
  </channel>
</rss>

