<?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: How to get values through expression in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-get-values-through-expression/m-p/604711#M1118593</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please can anyone help me &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Feb 2014 12:32:27 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-02-04T12:32:27Z</dc:date>
    <item>
      <title>How to get values through expression</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-values-through-expression/m-p/604707#M1118589</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;I have one expression in staright table and the expression is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sum(if(DateUpdate&amp;lt;DueDate and not isnull(DateIssue),1,0))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could anyone let me know how can I change above expression so that I need to get the values for &lt;STRONG&gt;MAX(DateUpdate) &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Feb 2014 12:00:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-values-through-expression/m-p/604707#M1118589</guid>
      <dc:creator />
      <dc:date>2014-02-04T12:00:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to get values through expression</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-values-through-expression/m-p/604708#M1118590</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;At script level you cant take max date. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;instead you can do at the Expression level in chart using set analysis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;put this in the script :&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt; if(DateUpdate&amp;lt;DueDate and not isnull(DateIssue),1,0) as New_Field&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in chart expression&lt;/P&gt;&lt;P&gt;Sum(&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&amp;lt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;New_Field&lt;/SPAN&gt; = {1},&lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;DateUpdate&lt;/STRONG&gt; = {"$(=Max(&lt;STRONG style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;DateUpdate&lt;/STRONG&gt;))"}&amp;gt;}&amp;nbsp;&amp;nbsp; Field_Name )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Nilesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Feb 2014 12:04:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-values-through-expression/m-p/604708#M1118590</guid>
      <dc:creator>nilesh_gangurde</dc:creator>
      <dc:date>2014-02-04T12:04:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to get values through expression</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-values-through-expression/m-p/604709#M1118591</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks and I have DateUpdate and DateIsuue in separate tables. How can I enter in script? please help me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Feb 2014 12:07:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-values-through-expression/m-p/604709#M1118591</guid>
      <dc:creator />
      <dc:date>2014-02-04T12:07:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to get values through expression</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-values-through-expression/m-p/604710#M1118592</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;and also what is Field_Name? please let me know&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Feb 2014 12:18:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-values-through-expression/m-p/604710#M1118592</guid>
      <dc:creator />
      <dc:date>2014-02-04T12:18:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to get values through expression</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-values-through-expression/m-p/604711#M1118593</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please can anyone help me &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Feb 2014 12:32:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-values-through-expression/m-p/604711#M1118593</guid>
      <dc:creator />
      <dc:date>2014-02-04T12:32:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to get values through expression</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-values-through-expression/m-p/604712#M1118594</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First take the Dates which you required to build logic into single Temp Table and then do the above mentioned logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Nilesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Feb 2014 13:13:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-values-through-expression/m-p/604712#M1118594</guid>
      <dc:creator>nilesh_gangurde</dc:creator>
      <dc:date>2014-02-04T13:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to get values through expression</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-values-through-expression/m-p/604713#M1118595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; font-family: 'Helvetica','sans-serif'; color: #3d3d3d; background: white;"&gt;FIRSTSORTEDVALUE(sum(if(DateUpdate&amp;lt;DueDate and not isnull(DateIssue),1,0))&lt;/SPAN&gt;,&lt;/P&gt;&lt;P&gt;-IF(DateUpdate&amp;lt;DueDate,DateUpdate))&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;&lt;SPAN style="font-size: 9.5pt; font-family: 'Helvetica','sans-serif'; color: #3d3d3d; background: white;"&gt;FIRSTSORTEDVALUE(sum(if(DateUpdate&amp;lt;DueDate and not isnull(DateIssue),1,0))&lt;/SPAN&gt;,&lt;/P&gt;&lt;P&gt;IF(DateUpdate&amp;lt;DueDate,DateUpdate))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Feb 2014 13:30:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-values-through-expression/m-p/604713#M1118595</guid>
      <dc:creator>MK_QSL</dc:creator>
      <dc:date>2014-02-04T13:30:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to get values through expression</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-values-through-expression/m-p/604714#M1118596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks and when I am passing this it is showing error in expression.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Feb 2014 13:39:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-values-through-expression/m-p/604714#M1118596</guid>
      <dc:creator />
      <dc:date>2014-02-04T13:39:00Z</dc:date>
    </item>
  </channel>
</rss>

