<?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: Qlik Sense: Use of loaded measures in script in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Use-of-loaded-measures-in-script/m-p/1257279#M25494</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;It is because when you concatenate it wont work the way you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try below script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Map:&lt;/P&gt;&lt;P&gt;Mapping LOAD [BU],&lt;/P&gt;&lt;P&gt;&amp;nbsp; Sum([Pipeline]) as [Pipeline]&lt;/P&gt;&lt;P&gt;FROM [lib://Data1 (lenovo-pc_lenovo)/Reuse Measures Test Data.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Opportunities)&lt;/P&gt;&lt;P&gt;Group by BU;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;Load *,YTD-[Pipeline] as RunRate;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; BU,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ApplyMap('Map',BU) as [Pipeline],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sum(YTD) as YTD&lt;/P&gt;&lt;P&gt;FROM [lib://Data1 (lenovo-pc_lenovo)/Reuse Measures Test Data.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Actuals)Group by BU;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Feb 2017 19:24:15 GMT</pubDate>
    <dc:creator>kaushiknsolanki</dc:creator>
    <dc:date>2017-02-23T19:24:15Z</dc:date>
    <item>
      <title>Qlik Sense: Use of loaded measures in script</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Use-of-loaded-measures-in-script/m-p/1257274#M25489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need help with the following issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To make things simple, I have a similar script as the one here:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-family: courier new,courier;"&gt;LOAD&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; BusinessUnit, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; YTD,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Pipeline&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-family: courier new,courier;"&gt;FROM xxx....;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but to create a stacked bar chart I need a new measure dependent on the ones I am loading first, so I need the following to work:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-family: courier new,courier;"&gt;LOAD&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; BusinessUnit, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; YTD,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Pipeline,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; YTD - Pipeline &lt;SPAN style="color: #0000ff;"&gt;as&lt;/SPAN&gt; RunRate&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-family: courier new,courier;"&gt;FROM xxx....;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: arial,helvetica,sans-serif;"&gt;The data load of this script is successful with no errors, but &lt;SPAN style="font-family: courier new,courier;"&gt;RunRate&lt;/SPAN&gt; has no values &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/cry.png" /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: arial,helvetica,sans-serif;"&gt;I have tried to load variable names and their formulae from a script, which outputs the same result with only an additional step that provides no added value.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: arial,helvetica,sans-serif;"&gt;If I create a table visualization using the either script and in the measure &lt;SPAN style="font-size: 12pt;"&gt;&lt;STRONG&gt;&lt;EM style="font-family: times new roman,times;"&gt;fx&lt;/EM&gt;&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt;"&gt; field I use &lt;SPAN style="font-family: courier new,courier;"&gt;YTD-Pipeline&lt;/SPAN&gt; (not the &lt;SPAN style="font-family: courier new,courier;"&gt;RunRate&lt;/SPAN&gt; measure) it shows the correct values...&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;If I create a measure defining it in the Measures tab, it also works fine. However, I am not able to use it to create my stacked bar chart because defined like that it does calculate the values but it does not belong to any table...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;I also tried a &lt;SPAN style="font-family: courier new,courier;"&gt;RESIDENT LOAD&lt;/SPAN&gt; trying to add &lt;SPAN style="font-family: courier new,courier;"&gt;RunRate&lt;/SPAN&gt; as follows:&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-family: courier new,courier;"&gt;TempTable:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-family: courier new,courier;"&gt;LOAD&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; BusinessUnit, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; YTD,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Pipeline&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-family: courier new,courier;"&gt;FROM xxx....;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-family: courier new,courier;"&gt;FinalTable:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-family: courier new,courier;"&gt;LOAD&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; BusinessUnit, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; YTD,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Pipeline,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; YTD-Pipeline as RunRate&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-family: courier new,courier;"&gt;RESIDENT TempTable;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;But that gives the very same results: no values in &lt;SPAN style="font-family: courier new,courier;"&gt;RunRate&lt;/SPAN&gt;...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style=": ; color: #ff6600; font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;The goal is to be able to re-use measures in the load script.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 10pt; font-family: arial,helvetica,sans-serif;"&gt;Does anyone have a hint? It will be much appreciated. Thanks!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2017 17:17:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Use-of-loaded-measures-in-script/m-p/1257274#M25489</guid>
      <dc:creator>demonioazul</dc:creator>
      <dc:date>2017-02-23T17:17:50Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense: Use of loaded measures in script</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Use-of-loaded-measures-in-script/m-p/1257275#M25490</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;Not sure but just give a try with below script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier; color: #0000ff;"&gt;LOAD&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; BusinessUnit,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; YTD,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Pipeline,&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Num(YTD) - Num(Pipeline) &lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: inherit; color: #0000ff;"&gt;as&lt;/SPAN&gt; RunRate&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier; color: #0000ff;"&gt;FROM xxx....;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier; color: #0000ff;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Regards,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2017 17:47:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Use-of-loaded-measures-in-script/m-p/1257275#M25490</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2017-02-23T17:47:31Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense: Use of loaded measures in script</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Use-of-loaded-measures-in-script/m-p/1257276#M25491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, &lt;A href="https://community.qlik.com/qlik-users/34510"&gt;kaushik.solanki&lt;/A&gt;‌... it did not work....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No load script errors, but when I try to use the plain RunRate it shows only dashes (meaning the values of RunRate are null) and if I use sum(RunRate) all values are zero, which is wrong since YTD and Pipeline not necessarily are always the same to produce YTD-Pipeline = 0....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2017 18:08:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Use-of-loaded-measures-in-script/m-p/1257276#M25491</guid>
      <dc:creator>demonioazul</dc:creator>
      <dc:date>2017-02-23T18:08:53Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense: Use of loaded measures in script</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Use-of-loaded-measures-in-script/m-p/1257277#M25492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Demian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can feel it is happening because one of your value either YTD or Pipeline is coming as text and thats the reason why when you use the maths on text result will be null, which you are getting in RunRate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check on that. &lt;/P&gt;&lt;P&gt;Also share some sample data with us to investigate more.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2017 18:15:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Use-of-loaded-measures-in-script/m-p/1257277#M25492</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2017-02-23T18:15:52Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense: Use of loaded measures in script</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Use-of-loaded-measures-in-script/m-p/1257278#M25493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A href="https://community.qlik.com/qlik-users/34510"&gt;kaushik.solanki&lt;/A&gt;‌,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No, no data is text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In "real life" I will get the &lt;SPAN style="font-family: courier new,courier;"&gt;Pipeline&lt;/SPAN&gt; data from one source and the &lt;SPAN style="font-family: courier new,courier;"&gt;YTD&lt;/SPAN&gt; from another, that is why I am using two tabs in the Excel file and concatenating the tables in the LOAD script and using a RESIDENT load in order &lt;EM&gt;to be able to transform data&lt;/EM&gt;, as recommended by the &lt;A href="https://help.qlik.com/en-US/sense/3.1/Subsystems/Hub/Content/Scripting/load-data-from-previously-loaded-table.htm"&gt;Help&lt;/A&gt; webpage.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please see attached QVF and XLSX files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help!&lt;/P&gt;&lt;P&gt;~Demian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2017 19:12:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Use-of-loaded-measures-in-script/m-p/1257278#M25493</guid>
      <dc:creator>demonioazul</dc:creator>
      <dc:date>2017-02-23T19:12:56Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense: Use of loaded measures in script</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Use-of-loaded-measures-in-script/m-p/1257279#M25494</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;It is because when you concatenate it wont work the way you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try below script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Map:&lt;/P&gt;&lt;P&gt;Mapping LOAD [BU],&lt;/P&gt;&lt;P&gt;&amp;nbsp; Sum([Pipeline]) as [Pipeline]&lt;/P&gt;&lt;P&gt;FROM [lib://Data1 (lenovo-pc_lenovo)/Reuse Measures Test Data.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Opportunities)&lt;/P&gt;&lt;P&gt;Group by BU;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data:&lt;/P&gt;&lt;P&gt;Load *,YTD-[Pipeline] as RunRate;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; BU,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ApplyMap('Map',BU) as [Pipeline],&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sum(YTD) as YTD&lt;/P&gt;&lt;P&gt;FROM [lib://Data1 (lenovo-pc_lenovo)/Reuse Measures Test Data.xlsx]&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Actuals)Group by BU;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2017 19:24:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Use-of-loaded-measures-in-script/m-p/1257279#M25494</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2017-02-23T19:24:15Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense: Use of loaded measures in script</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Use-of-loaded-measures-in-script/m-p/1257280#M25495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;AWESOME!!!! &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks so much, &lt;A href="https://community.qlik.com/qlik-users/34510"&gt;kaushik.solanki&lt;/A&gt;‌!!!!!!!!!!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was indeed so faaaaaaaaar from the right answer to this issue!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2017 19:36:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Use-of-loaded-measures-in-script/m-p/1257280#M25495</guid>
      <dc:creator>demonioazul</dc:creator>
      <dc:date>2017-02-23T19:36:48Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense: Use of loaded measures in script</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Use-of-loaded-measures-in-script/m-p/1257281#M25496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Anytime Demian.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Feel free to post any of your queries on community.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2017 19:39:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Use-of-loaded-measures-in-script/m-p/1257281#M25496</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2017-02-23T19:39:10Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense: Use of loaded measures in script</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Use-of-loaded-measures-in-script/m-p/1257282#M25497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt; &lt;A href="https://community.qlik.com/qlik-users/34510"&gt;kaushik.solanki&lt;/A&gt;‌...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have an issue now... I did post here some simple sample data because I thought I could learn and edit the script once I got help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your solution is very useful but if I have more fields and I still need to "merge" those tables' fields in one to make calculations on the loaded measures, then I can't do it.&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to post the new data file and the new QVF but this chat/forum does not allow me to...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2017 19:53:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Use-of-loaded-measures-in-script/m-p/1257282#M25497</guid>
      <dc:creator>demonioazul</dc:creator>
      <dc:date>2017-02-27T19:53:53Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense: Use of loaded measures in script</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Use-of-loaded-measures-in-script/m-p/1257283#M25498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do I post another question so I can get further help?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2017 21:01:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Use-of-loaded-measures-in-script/m-p/1257283#M25498</guid>
      <dc:creator>demonioazul</dc:creator>
      <dc:date>2017-02-27T21:01:39Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense: Use of loaded measures in script</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Use-of-loaded-measures-in-script/m-p/1257284#M25499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;A href="https://community.qlik.com/qlik-users/34510"&gt;kaushik.solanki&lt;/A&gt;‌,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I noticed that from my Community profile Inbox it is not possible to reply and attach files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As explained above, I thought it would be easy to just extrapolate the hint to a more complicated data load... but I could not do that...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I get the data from different sources (for this purpose I put the data in different tabs in the data file) and try to merge them in one app so I can make comparisons, visualizations and tables...&lt;EM&gt;( but it has proven more complicated than expected... &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/confused.png" /&gt; I've using Qlik Sense almost two years now and this challenge is the hardest I ever had so far...)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, after merging those tables, I need to calculate&amp;nbsp; also an offset using the variables to generate a crosstable with two dimensions and one measure in order to be able to plot a stacked bar chart, Something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="EM TAR (ALL OPPS).jpg" class="jive-image image-1" src="/legacyfs/online/154658_EM TAR (ALL OPPS).jpg" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;which, by the way, I am able to create by having the table generated in the attached QVF and calculating manually the offsets...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I want to have everything automated...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Or maybe my approach is wrong?&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I can accomplish to load a table similar to the one shown in the&lt;SPAN style="font-family: courier new,courier;"&gt;&lt;STRONG&gt; Sample - TAR.xlsx&lt;/STRONG&gt;&lt;/SPAN&gt; file, then I would be able to generate the table with no issues... but so far I haven't been able to find the right way...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can generate each Business Unit (BU) or Business Segment (BS) chart separately by manually creating the tables for them, but that is not the case... I need Qlik Sense to do it for me...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want that chart to show dynamically the information for any BU or any BS I choose...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Feb 2017 22:45:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Use-of-loaded-measures-in-script/m-p/1257284#M25499</guid>
      <dc:creator>demonioazul</dc:creator>
      <dc:date>2017-02-27T22:45:13Z</dc:date>
    </item>
    <item>
      <title>Re: Qlik Sense: Use of loaded measures in script</title>
      <link>https://community.qlik.com/t5/App-Development/Qlik-Sense-Use-of-loaded-measures-in-script/m-p/1257285#M25500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Demian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will sure go through the problem statement and the sample data. I request you to create a new post so that it can help others too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once you do that, please reply here with the post link, so that i can reply to that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Feb 2017 15:00:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Qlik-Sense-Use-of-loaded-measures-in-script/m-p/1257285#M25500</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2017-02-28T15:00:52Z</dc:date>
    </item>
  </channel>
</rss>

