<?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: Division gives wrong results in load editor in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Division-gives-wrong-results-in-load-editor/m-p/2141810#M92878</link>
    <description>&lt;P&gt;Aggregations (like sum) can only be used in the load script in conjunction with the Group by function to aggregate values by a dimension or multiple dimensions.&lt;/P&gt;</description>
    <pubDate>Tue, 28 Nov 2023 04:50:45 GMT</pubDate>
    <dc:creator>Lisa_P</dc:creator>
    <dc:date>2023-11-28T04:50:45Z</dc:date>
    <item>
      <title>Division gives wrong results in load editor</title>
      <link>https://community.qlik.com/t5/App-Development/Division-gives-wrong-results-in-load-editor/m-p/2139615#M92625</link>
      <description>&lt;P&gt;Hello, I would like to ask for your support for an operation that I can calculate in the frontend but not in the load editor.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Step1:&lt;BR /&gt;...&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Sum(Acil_Hesap2) as Acil_Hesap2,&lt;BR /&gt;Sum(Normal_Hesap2) as Normal_Hesap2 ,&lt;BR /&gt;Sum(Toplam_Hesap2) as Toplam_Hesap2,&lt;BR /&gt;sum(Acil_Adet2) as Acil_Adet,&lt;BR /&gt;sum(Normal_Adet2) as Normal_Adet,&lt;BR /&gt;sum(Toplam_Adet2) as Toplam_Adet&lt;/P&gt;
&lt;P&gt;...&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Step2: (division returns an incorrect result in this step)&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;...&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;sum(Acil_Hesap2)+ sum(Acil_Adet) as AcilOran,&lt;BR /&gt;sum(Normal_Hesap2)+ sum(Normal_Adet) as NormalOran,&lt;BR /&gt;sum(Toplam_Hesap2)+sum(Toplam_Adet)as ToplamOran&lt;/P&gt;
&lt;P&gt;...&lt;/P&gt;
&lt;P&gt;In fact, the process I want to go to is working on the master item on the front side, but I cannot call the master item to calculate the variable. So I tried to calculate it in the load editor, but it does not work like on the front side.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;The calculation I wanted in the final:&lt;/STRONG&gt;&lt;BR /&gt;(SUM(AcilOran) + sum(NormalOran) +sum(ToplamOran))/3 as TotalDegisim&lt;/P&gt;
&lt;P&gt;I hope someone can help me with what I can't see.&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 21 Nov 2023 06:47:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Division-gives-wrong-results-in-load-editor/m-p/2139615#M92625</guid>
      <dc:creator>Milaf</dc:creator>
      <dc:date>2023-11-21T06:47:09Z</dc:date>
    </item>
    <item>
      <title>Re: Division gives wrong results in load editor</title>
      <link>https://community.qlik.com/t5/App-Development/Division-gives-wrong-results-in-load-editor/m-p/2141810#M92878</link>
      <description>&lt;P&gt;Aggregations (like sum) can only be used in the load script in conjunction with the Group by function to aggregate values by a dimension or multiple dimensions.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 04:50:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Division-gives-wrong-results-in-load-editor/m-p/2141810#M92878</guid>
      <dc:creator>Lisa_P</dc:creator>
      <dc:date>2023-11-28T04:50:45Z</dc:date>
    </item>
    <item>
      <title>Re: Division gives wrong results in load editor</title>
      <link>https://community.qlik.com/t5/App-Development/Division-gives-wrong-results-in-load-editor/m-p/2141815#M92879</link>
      <description>&lt;P&gt;Try to take resident of step 1&lt;BR /&gt;like&lt;/P&gt;
&lt;P&gt;Table1:&lt;/P&gt;
&lt;P&gt;load&lt;BR /&gt;Sum(Acil_Hesap2) as Acil_Hesap2,&lt;BR /&gt;Sum(Normal_Hesap2) as Normal_Hesap2 ,&lt;BR /&gt;Sum(Toplam_Hesap2) as Toplam_Hesap2,&lt;BR /&gt;sum(Acil_Adet2) as Acil_Adet,&lt;BR /&gt;sum(Normal_Adet2) as Normal_Adet,&lt;BR /&gt;sum(Toplam_Adet2) as Toplam_Adet&lt;BR /&gt;from path...&lt;/P&gt;
&lt;P&gt;Table2:&lt;/P&gt;
&lt;P&gt;load&lt;/P&gt;
&lt;P&gt;((Acil_Hesap2+Acil_Adet2)+(Normal_Hesap2+Normal_Adet)&lt;BR /&gt;+(Toplam_Hesap2+Toplam_Adet))/3 as Final_Result&lt;/P&gt;
&lt;P&gt;resident Table1;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just try this suppose this will not work we will try any other method..&lt;/P&gt;</description>
      <pubDate>Tue, 28 Nov 2023 05:28:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Division-gives-wrong-results-in-load-editor/m-p/2141815#M92879</guid>
      <dc:creator>Parthiban</dc:creator>
      <dc:date>2023-11-28T05:28:04Z</dc:date>
    </item>
  </channel>
</rss>

