<?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: Implement the query in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790666#M1028448</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;not getting the result&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Feb 2015 05:49:52 GMT</pubDate>
    <dc:creator>arulsettu</dc:creator>
    <dc:date>2015-02-12T05:49:52Z</dc:date>
    <item>
      <title>Implement the query</title>
      <link>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790657#M1028435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi i am trying to implement the following query &lt;/P&gt;&lt;P&gt;select pdr_prod_code, count(1), &lt;/P&gt;&lt;P&gt;sum(decode(pdr_status, 'R', 1, 0)) from t_pol_due_for_ren&lt;/P&gt;&lt;P&gt;where trunc(pdr_pol_to_dt) between '01-DEC-2014' and '31-DEC-2014'&lt;/P&gt;&lt;P&gt;group by pdr_prod_code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in line chart. month and year as dimensions&lt;/P&gt;&lt;P&gt;please suggest me something its urgent...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2015 04:08:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790657#M1028435</guid>
      <dc:creator>arulsettu</dc:creator>
      <dc:date>2015-02-12T04:08:35Z</dc:date>
    </item>
    <item>
      <title>Re: Implement the query</title>
      <link>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790658#M1028437</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;In script try like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load pdr_prod_code,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sum(if(pdr_status='R',1,0)) as Sum_pdr_Status,&lt;/P&gt;&lt;P&gt;from t_pol_due_for_ren&lt;/P&gt;&lt;P&gt;where Date(pdr_pol_to_dt,'DD-MMM-YYYY')&amp;gt;='01-Dec-2014' and Date(pdr_pol_to_dt,'DD-MMM-YYYY')&amp;lt;='31-Dec-2014'&lt;/P&gt;&lt;P&gt;group by pdr_prod_code;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to write set analysis using above condition then try like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum(if(pdr_status='R' and pdr_pol_to_dt&amp;gt;='01-Dec-2014' and pdr_pol_to_dt&amp;lt;='31-Dec-2014',1,0))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2015 04:18:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790658#M1028437</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2015-02-12T04:18:16Z</dc:date>
    </item>
    <item>
      <title>Re: Implement the query</title>
      <link>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790659#M1028439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;max i used below code in script now what to write in chart&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Load pdr_prod_code,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sum(if(pdr_status='R',1,0)) as Sum_pdr_Status,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;from t_pol_due_for_ren&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;where Date(pdr_pol_to_dt,'DD-MMM-YYYY')&amp;gt;='01-Dec-2014' and Date(pdr_pol_to_dt,'DD-MMM-YYYY')&amp;lt;='31-Dec-2014'&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;group by pdr_prod_code;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2015 04:31:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790659#M1028439</guid>
      <dc:creator>arulsettu</dc:creator>
      <dc:date>2015-02-12T04:31:21Z</dc:date>
    </item>
    <item>
      <title>Re: Implement the query</title>
      <link>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790660#M1028441</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 you said you have month and Year as dimension then you have dimension and&lt;/P&gt;&lt;P&gt;in expression what do you want to show??&lt;/P&gt;&lt;P&gt;if you want to show Sum_pdr_Status then use it as expression.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2015 04:36:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790660#M1028441</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2015-02-12T04:36:30Z</dc:date>
    </item>
    <item>
      <title>Re: Implement the query</title>
      <link>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790661#M1028443</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi max i have to show like this&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="image-1 jive-image" src="https://community.qlik.com/legacyfs/online/77686_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In y axis have to show in ratio&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2015 04:40:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790661#M1028443</guid>
      <dc:creator>arulsettu</dc:creator>
      <dc:date>2015-02-12T04:40:52Z</dc:date>
    </item>
    <item>
      <title>Re: Implement the query</title>
      <link>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790662#M1028444</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;any ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2015 04:56:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790662#M1028444</guid>
      <dc:creator>arulsettu</dc:creator>
      <dc:date>2015-02-12T04:56:59Z</dc:date>
    </item>
    <item>
      <title>Re: Implement the query</title>
      <link>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790663#M1028445</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi max&lt;/P&gt;&lt;P&gt;can you suggest based on the image&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2015 05:07:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790663#M1028445</guid>
      <dc:creator>arulsettu</dc:creator>
      <dc:date>2015-02-12T05:07:36Z</dc:date>
    </item>
    <item>
      <title>Re: Implement the query</title>
      <link>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790664#M1028446</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are struggling to write an expression for this. Simply follow these steps you can achieve what you want&lt;/P&gt;&lt;P&gt;Step1 :&lt;/P&gt;&lt;P&gt;Prod_Code_Cal:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;select pdr_prod_code, count(1),&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;sum(decode(pdr_status, 'R', 1, 0))&lt;STRONG&gt; &lt;EM style="text-decoration: underline;"&gt;Prod_sum&lt;/EM&gt;&lt;/STRONG&gt; from t_pol_due_for_ren&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;where trunc(pdr_pol_to_dt) between '01-DEC-2014' and '31-DEC-2014'&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;group by pdr_prod_code&lt;/P&gt;&lt;P&gt;Store Prod_Code_Cal into [../QVD/&lt;SPAN style="font-size: 13.3333330154419px;"&gt;Prod_Code_Cal&lt;/SPAN&gt;.qvd];&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; drop table &lt;SPAN style="font-size: 13.3333330154419px;"&gt;Prod_Code_Cal&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step2 :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Upload this QVD and associate to &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; t_pol_due_for_ren and Prod_Code table.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step3:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Take Line chart with your dimensions and&amp;nbsp; expression .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : Please notice on Prod_sum.you need to store this result in a column.Then, only you can use this value in expression on front End.&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;Krishna &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2015 05:25:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790664#M1028446</guid>
      <dc:creator>krishna20</dc:creator>
      <dc:date>2015-02-12T05:25:16Z</dc:date>
    </item>
    <item>
      <title>Re: Implement the query</title>
      <link>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790665#M1028447</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;max it showing invalid expression plz suggest&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2015 05:39:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790665#M1028447</guid>
      <dc:creator>arulsettu</dc:creator>
      <dc:date>2015-02-12T05:39:46Z</dc:date>
    </item>
    <item>
      <title>Re: Implement the query</title>
      <link>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790666#M1028448</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;not getting the result&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2015 05:49:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790666#M1028448</guid>
      <dc:creator>arulsettu</dc:creator>
      <dc:date>2015-02-12T05:49:52Z</dc:date>
    </item>
    <item>
      <title>Re: Implement the query</title>
      <link>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790667#M1028449</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can any one help me on this issue&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2015 06:02:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790667#M1028449</guid>
      <dc:creator>arulsettu</dc:creator>
      <dc:date>2015-02-12T06:02:44Z</dc:date>
    </item>
    <item>
      <title>Re: Implement the query</title>
      <link>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790668#M1028450</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;any one plz?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2015 06:35:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790668#M1028450</guid>
      <dc:creator>arulsettu</dc:creator>
      <dc:date>2015-02-12T06:35:08Z</dc:date>
    </item>
    <item>
      <title>Re: Implement the query</title>
      <link>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790669#M1028451</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ARul,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check thsi expression&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum({&amp;lt;PDR_STATUS={'R'}&amp;gt;}PDR_PROD_CODE)/sum({&amp;lt;PDR_STATUS={'R'}&amp;gt;} TOTAL &amp;lt;Year&amp;gt;PDR_PROD_CODE)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2015 08:13:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790669#M1028451</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-02-12T08:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: Implement the query</title>
      <link>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790670#M1028452</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;but result not similar to above image and need to show y axis in percentage&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2015 08:18:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790670#M1028452</guid>
      <dc:creator>arulsettu</dc:creator>
      <dc:date>2015-02-12T08:18:54Z</dc:date>
    </item>
    <item>
      <title>Re: Implement the query</title>
      <link>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790671#M1028453</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;Check this file, is this you are expecting?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not explain with an example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2015 08:21:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790671#M1028453</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-02-12T08:21:08Z</dc:date>
    </item>
    <item>
      <title>Re: Implement the query</title>
      <link>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790672#M1028454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;what i need is count of pro_status =R/ product code in percentage&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2015 08:27:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790672#M1028454</guid>
      <dc:creator>arulsettu</dc:creator>
      <dc:date>2015-02-12T08:27:30Z</dc:date>
    </item>
    <item>
      <title>Re: Implement the query</title>
      <link>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790673#M1028455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Jagan need exactly like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Segoe UI',sans-serif; color: black;"&gt;status R / Total count &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN lang="EN-US" style="font-size: 10.0pt; font-family: 'Segoe UI',sans-serif; color: black;"&gt;group by product&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2015 08:40:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790673#M1028455</guid>
      <dc:creator>arulsettu</dc:creator>
      <dc:date>2015-02-12T08:40:09Z</dc:date>
    </item>
    <item>
      <title>Re: Implement the query</title>
      <link>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790674#M1028456</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;Can you explain with some sample data and your expected output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2015 08:42:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790674#M1028456</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-02-12T08:42:11Z</dc:date>
    </item>
    <item>
      <title>Re: Implement the query</title>
      <link>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790675#M1028457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in above qvw fields called&lt;/P&gt;&lt;P&gt;pdr_status in this i have to take pdr_status='R'/Count of pdr_prod_code group by pdr_prod_code&lt;/P&gt;&lt;P&gt;have to show in percentage&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2015 08:47:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790675#M1028457</guid>
      <dc:creator>arulsettu</dc:creator>
      <dc:date>2015-02-12T08:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: Implement the query</title>
      <link>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790676#M1028458</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;PFA file, hope it helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Feb 2015 08:54:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Implement-the-query/m-p/790676#M1028458</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-02-12T08:54:39Z</dc:date>
    </item>
  </channel>
</rss>

