<?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: need help on this urgent!! in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236629#M846956</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Anil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You got 1st three requirements(Total head count,&lt;SPAN style="font-size: 13.3333px;"&gt;Head count2 if &lt;/SPAN&gt;doj&amp;lt;=targetdate,Head count3, if doj&amp;gt;targetdate)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you share your script here??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That would be great help if you can share here. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 19 Mar 2017 14:31:15 GMT</pubDate>
    <dc:creator />
    <dc:date>2017-03-19T14:31:15Z</dc:date>
    <item>
      <title>need help on this urgent!!</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236620#M846942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Viewers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This requirement which is based on requisition details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have Emp table and it contains &lt;/P&gt;&lt;P&gt;empno,&lt;/P&gt;&lt;P&gt;doj&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and Requisition table and it contains&lt;/P&gt;&lt;P&gt;reqno,&lt;/P&gt;&lt;P&gt;reqdate,&lt;/P&gt;&lt;P&gt;targetdate,&lt;/P&gt;&lt;P&gt;no of emps&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and also am attaching 1more table(Induction)&lt;/P&gt;&lt;P&gt;it contains&lt;/P&gt;&lt;P&gt;reqno,&lt;/P&gt;&lt;P&gt;empno,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now my Requirement is take dimensions as reqno,reqdate,targetdate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;Calculate Headcount (Its working fine)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here I got totally strucked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;Total emp headcount(which is Doj&amp;lt;=targetdate)&lt;/P&gt;&lt;P&gt;&amp;gt;If Doj&amp;gt;Targetdate, then saparate 1st month emp&amp;nbsp;&amp;nbsp; count &lt;/P&gt;&lt;P&gt;&amp;gt;If Doj&amp;gt;Targetdate, then saparate 2nd month emp count &lt;/P&gt;&lt;P&gt;If Doj&amp;gt;Targetdate, then saparate 3rd month emp count &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note:Doj&amp;gt;Targetdate which is equilent to &lt;/P&gt;&lt;P&gt;1stmonth+2nd month+3rdmonth.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To calculate only 1stmonth count when Doj&amp;gt;Targetdate&lt;/P&gt;&lt;P&gt;am using if condition as follows as below&lt;/P&gt;&lt;P&gt;If(Month(AddMonths(targetdate,1))=Month(Doj),1,0) as flag1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now in the front end as using Set expression Sum({&amp;lt;flag1={1}&amp;gt;}no of emps)&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But am not getting accurate results what exactly am looking for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PFB for your reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you understand my requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help will be appreciated. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236620#M846942</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: need help on this urgent!!</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236621#M846944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If doj and targetdate both are in the same table then its working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But here am using Left join between the Emp and Inducted table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then doing again Left join between Requisition and Emp table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So some extra records are coming!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let me know if any wrong with me???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Mar 2017 11:41:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236621#M846944</guid>
      <dc:creator />
      <dc:date>2017-03-19T11:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: need help on this urgent!!</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236622#M846945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you talk about you are getting seeing exact results you may share expected result on that set analysis. Would you share qvw please&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Mar 2017 12:36:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236622#M846945</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-03-19T12:36:03Z</dc:date>
    </item>
    <item>
      <title>Re: need help on this urgent!!</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236623#M846947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PFB for your reference!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Mar 2017 13:11:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236623#M846947</guid>
      <dc:creator />
      <dc:date>2017-03-19T13:11:17Z</dc:date>
    </item>
    <item>
      <title>Re: need help on this urgent!!</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236624#M846949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you let me know which values you want to see instead of that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Condition seems works to me &lt;STRONG&gt;If(doj&amp;lt;=targetdate,1,0) as flag1&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/156764_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Mar 2017 13:14:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236624#M846949</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-03-19T13:14:51Z</dc:date>
    </item>
    <item>
      <title>Re: need help on this urgent!!</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236625#M846950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have attached excel file with my desired results&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Headcount is 120&lt;/P&gt;&lt;P&gt;Headcount is 18, If Doj&amp;lt;=targetdate&lt;/P&gt;&lt;P&gt;Headcount is 102, If Doj&amp;gt;targetdate&lt;/P&gt;&lt;P&gt;1st Month count is 38&lt;/P&gt;&lt;P&gt;2nd Month count is 43&lt;/P&gt;&lt;P&gt;3rd month count is 21&lt;/P&gt;&lt;P&gt;Total 38+43+21=102, If Doj&amp;gt;Targetdate&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Mar 2017 13:20:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236625#M846950</guid>
      <dc:creator />
      <dc:date>2017-03-19T13:20:53Z</dc:date>
    </item>
    <item>
      <title>Re: need help on this urgent!!</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236626#M846952</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got these 3 &lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Headcount is 120&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Headcount is 18, If Doj&amp;lt;=targetdate&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Headcount is 102, If Doj&amp;gt;targetdate&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;And then, How and which field month you are calculating the 1st, 2nd, 3rd Month&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;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/156765_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Mar 2017 13:58:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236626#M846952</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-03-19T13:58:10Z</dc:date>
    </item>
    <item>
      <title>Re: need help on this urgent!!</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236627#M846953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your replay...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That is what exactly am looking for now we have got head count 102, if Doj&amp;gt;Targetdate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I want to show independent counts for every month(38+43+21=102) ,If Doj&amp;gt;Targetdate&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;i tried this&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Creating flags in backend&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;If(Month(Addmonths(Targetdate,1))=Month(Doj),1,0) as Month1 ,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 13.3333px;"&gt;If(Month(Addmonths(Targetdate,2))=Month(Doj),1,0) as Month2,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 13.3333px;"&gt;If(Month(Addmonths(Targetdate,3))=Month(Doj),1,0) as Month3&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 13.3333px;"&gt;Now am using in set analysis but not working properly.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 13.3333px;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Can you find the logic for this??? &lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 13.3333px;"&gt;I want to know whether its possible or not?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 13.3333px;"&gt;Please suggest.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 13.3333px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="line-height: 1.5em; font-size: 13.3333px;"&gt;Request to share your script here!!!&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Mar 2017 14:13:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236627#M846953</guid>
      <dc:creator />
      <dc:date>2017-03-19T14:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: need help on this urgent!!</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236628#M846955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Instead of flag why can't simple set analysis&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;create an extra field in your script as&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;num(Month(Yourdatefield)) as Month,&lt;/STRONG&gt;&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;and reload the application and write your expression as&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;STRONG&gt;sum({$&amp;lt;&lt;STRONG style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Yourdatefield&lt;/STRONG&gt; = {'$(=Min(Month))'} [no of emps])&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Mar 2017 14:27:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236628#M846955</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-03-19T14:27:26Z</dc:date>
    </item>
    <item>
      <title>Re: need help on this urgent!!</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236629#M846956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Anil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You got 1st three requirements(Total head count,&lt;SPAN style="font-size: 13.3333px;"&gt;Head count2 if &lt;/SPAN&gt;doj&amp;lt;=targetdate,Head count3, if doj&amp;gt;targetdate)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you share your script here??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That would be great help if you can share here. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Mar 2017 14:31:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236629#M846956</guid>
      <dc:creator />
      <dc:date>2017-03-19T14:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: need help on this urgent!!</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236630#M846958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FYI&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Mar 2017 14:35:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236630#M846958</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-03-19T14:35:17Z</dc:date>
    </item>
    <item>
      <title>Re: need help on this urgent!!</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236631#M846960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry Anil am unable to open your file as am using trail version.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please paste your script here&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Mar 2017 14:37:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236631#M846960</guid>
      <dc:creator />
      <dc:date>2017-03-19T14:37:54Z</dc:date>
    </item>
    <item>
      <title>Re: need help on this urgent!!</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236632#M846961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I've nothing done. Simply loaded and used Rowno() for common to get it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Rowno() as ID,empno, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; doj&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;C&gt;&lt;/C&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(ooxml, embedded labels, table is Sheet1);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sample1:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Rowno() as ID,reqno, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; reqdate, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; targetdate, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [no of emps]&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;C&gt;&lt;/C&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(ooxml, embedded labels, table is Sheet2);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD Rowno() as ID,reqno, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; empno, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; status&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;C&gt;&lt;/C&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(ooxml, embedded labels, table is INDUCTED);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Front-end I've taken straight table with the dim as &lt;STRONG&gt;doj&lt;/STRONG&gt;, &lt;STRONG&gt;targetdate&lt;/STRONG&gt;, &lt;STRONG&gt;empno&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;And expressions are&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1) HC ---&amp;gt; Sum([no of emps])&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2) &amp;lt;= ----&amp;gt; If(doj&amp;lt;=targetdate,sum([no of emps]))&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3) &amp;gt; ------&amp;gt; If(doj&amp;gt;targetdate,sum([no of emps]))&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would highly request you to please mark &lt;STRONG&gt;helpful&lt;/STRONG&gt; if it suits for you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Mar 2017 15:09:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236632#M846961</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-03-19T15:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: need help on this urgent!!</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236633#M846963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Anil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That is fine But If I take my dimensions as &lt;/P&gt;&lt;P&gt;Reqno,Reqdate,Targetdate&lt;/P&gt;&lt;P&gt;Then it is not showing what exactly am looking for.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Mar 2017 17:14:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236633#M846963</guid>
      <dc:creator />
      <dc:date>2017-03-19T17:14:50Z</dc:date>
    </item>
    <item>
      <title>Re: need help on this urgent!!</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236634#M846964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Like this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Capture.PNG" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/156774_Capture.PNG" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Mar 2017 17:46:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236634#M846964</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-03-19T17:46:58Z</dc:date>
    </item>
    <item>
      <title>Re: need help on this urgent!!</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236635#M846966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes Anil,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why am not getting same results????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anything wrong with me?&lt;/P&gt;&lt;P&gt;and also I tried your expression as you suggested the expression for individual months head count &lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;sum({$&amp;lt;&lt;STRONG style="font-style: inherit;"&gt;Yourdatefield&lt;/STRONG&gt; = {'$(=Min(Month))'} [no of emps]) &lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Please suggest where I did wrong!!!&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-weight: inherit; font-style: inherit;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;DIV class="jive-thread-reply-btn-correct" style="font-weight: inherit; font-style: inherit; font-size: 11.7px; font-family: inherit;"&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/message/1233982" style="margin: 0 20px 0 0; padding: 2px 14px 4px 28px; font-weight: bold; font-style: inherit; font-size: 11.7px; font-family: inherit; color: #3778c7; background-color: #f3f3f3;"&gt;Re: need help on this urgent!!&lt;/A&gt;&lt;P&gt;&lt;/P&gt;&lt;/DIV&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2017 02:31:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236635#M846966</guid>
      <dc:creator />
      <dc:date>2017-03-20T02:31:58Z</dc:date>
    </item>
    <item>
      <title>Re: need help on this urgent!!</title>
      <link>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236636#M846967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1) You have condition with doj. Try to take doj and hide that column from Presentation tab.&lt;/P&gt;&lt;P&gt;2) &lt;STRONG style="color: #3d3d3d; font-family: inherit; font-size: 13px; font-style: inherit;"&gt;sum({$&amp;lt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Yourdatefield&lt;/STRONG&gt; = {'$(=Min(Month))'} [no of emps])&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Note: You may forget to place your Date field instead of Yourdatefield. You should use targetdate on this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Mar 2017 04:24:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/need-help-on-this-urgent/m-p/1236636#M846967</guid>
      <dc:creator>Anil_Babu_Samineni</dc:creator>
      <dc:date>2017-03-20T04:24:11Z</dc:date>
    </item>
  </channel>
</rss>

