<?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 Need a help in calculating Accuracy in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Need-a-help-in-calculating-Accuracy/m-p/912873#M986275</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attached is the data...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to create line chart by using expression 1-(fabs([Quantity])/[Real Qty]) and dimension is Date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I am Unable to see the values&lt;/P&gt;&lt;P&gt;I am getting output as following&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Dash.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/95114_Dash.JPG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;Result should be in percentage.. Here I am getting output. it's displaying only 100% I want to show all the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could any one one help how to resolve this issue. It's Really Needful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Satya Paleti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Aug 2015 18:33:50 GMT</pubDate>
    <dc:creator>SatyaPaleti</dc:creator>
    <dc:date>2015-08-05T18:33:50Z</dc:date>
    <item>
      <title>Need a help in calculating Accuracy</title>
      <link>https://community.qlik.com/t5/QlikView/Need-a-help-in-calculating-Accuracy/m-p/912873#M986275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Folks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attached is the data...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to create line chart by using expression 1-(fabs([Quantity])/[Real Qty]) and dimension is Date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I am Unable to see the values&lt;/P&gt;&lt;P&gt;I am getting output as following&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Dash.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/95114_Dash.JPG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;Result should be in percentage.. Here I am getting output. it's displaying only 100% I want to show all the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could any one one help how to resolve this issue. It's Really Needful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Satya Paleti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Aug 2015 18:33:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-a-help-in-calculating-Accuracy/m-p/912873#M986275</guid>
      <dc:creator>SatyaPaleti</dc:creator>
      <dc:date>2015-08-05T18:33:50Z</dc:date>
    </item>
    <item>
      <title>Re: Need a help in calculating Accuracy</title>
      <link>https://community.qlik.com/t5/QlikView/Need-a-help-in-calculating-Accuracy/m-p/912874#M986276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;using this expression&lt;/P&gt;&lt;P&gt;=1-(fabs(sum(Quantity))/sum([Real Qty]))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Aug 2015 18:47:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-a-help-in-calculating-Accuracy/m-p/912874#M986276</guid>
      <dc:creator>prabhu0505</dc:creator>
      <dc:date>2015-08-05T18:47:09Z</dc:date>
    </item>
    <item>
      <title>Re: Need a help in calculating Accuracy</title>
      <link>https://community.qlik.com/t5/QlikView/Need-a-help-in-calculating-Accuracy/m-p/912875#M986277</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;as already said, you are missing an aggregation function to define the type of aggregation of your multiple Quantity and Real Quantity values per date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another thing you could change is to load your dates without time values like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14388090421389521 jive_text_macro" jivemacro_uid="_14388090421389521"&gt;
&lt;P&gt;LOAD DayName(Date) as Date,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Timestamp(Date) as Timestamp, &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Quantity, &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [Real Qty]&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;FROM &lt;/SPAN&gt;&lt;A class="" data-containerid="-1" data-containertype="-1" data-objectid="179189" data-objecttype="13" href="https://community.qlik.com/servlet/JiveServlet/download/2003-175487-838507-179189/data2.xls"&gt;https://community.qlik.com/servlet/JiveServlet/download/838507-179189/data2.xls&lt;/A&gt;&lt;SPAN&gt; (biff, embedded labels, table is Sheet1$);&lt;/SPAN&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The result could look like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QlikCommunity_Thread_175487_Pic1.JPG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/95130_QlikCommunity_Thread_175487_Pic1.JPG" style="height: 401px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QlikCommunity_Thread_175487_Pic2.JPG" class="jive-image image-2" src="https://community.qlik.com/legacyfs/online/95131_QlikCommunity_Thread_175487_Pic2.JPG" style="height: 198px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Marco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Aug 2015 21:13:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Need-a-help-in-calculating-Accuracy/m-p/912875#M986277</guid>
      <dc:creator>MarcoWedel</dc:creator>
      <dc:date>2015-08-05T21:13:40Z</dc:date>
    </item>
  </channel>
</rss>

