<?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 one field value by another field value in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/How-to-get-one-field-value-by-another-field-value/m-p/1211283#M388513</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;maybe this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 14 Oct 2016 07:45:52 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-10-14T07:45:52Z</dc:date>
    <item>
      <title>How to get one field value by another field value</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-one-field-value-by-another-field-value/m-p/1211279#M388509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;TABLE border="1" class="jiveBorder" style="border: 1px solid rgb(0, 0, 0); width: 100%;"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;date&lt;/TH&gt;&lt;TH style="text-align: center; background-color: #6690bc; color: #ffffff; padding: 2px;" valign="middle"&gt;num&lt;/TH&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2016/01/01&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;8&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2016/01/02&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;4&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2016/01/03&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2016/01/04&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;84&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2016/01/05&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;16&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD style="padding: 2px;"&gt;2016/01/06&lt;/TD&gt;&lt;TD style="padding: 2px;"&gt;8&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;I need to filter the num by date with expression.&lt;/P&gt;&lt;P&gt;1. Get num from 2016/01/02 to 2016/01/04&lt;SPAN style="font-size: 10pt;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;2. Get num of 2016/01/05&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;It's looks easy but I don't know to do.&lt;/P&gt;&lt;P&gt;Any help will be thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Oct 2016 10:48:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-one-field-value-by-another-field-value/m-p/1211279#M388509</guid>
      <dc:creator />
      <dc:date>2016-10-11T10:48:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to get one field value by another field value</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-one-field-value-by-another-field-value/m-p/1211280#M388510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may try &lt;EM&gt;(simple)&lt;/EM&gt;:&lt;/P&gt;&lt;P&gt;sum(if(date&amp;gt;=date('2016/01/02') and date&amp;lt;=date('2016/01/04'), num, 0))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or using set analysis &lt;EM&gt;(advance)&lt;/EM&gt;:&lt;/P&gt;&lt;P&gt;sum({&amp;lt;date = {"&amp;gt;=&lt;SPAN style="font-size: 13.3333px;"&gt;date('2016/01/02')&amp;lt;=&lt;SPAN style="font-size: 13.3333px;"&gt;date('2016/01/04')&lt;/SPAN&gt;&lt;/SPAN&gt;"}&amp;gt;} num)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;S.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Oct 2016 06:33:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-one-field-value-by-another-field-value/m-p/1211280#M388510</guid>
      <dc:creator>shawn-qv</dc:creator>
      <dc:date>2016-10-12T06:33:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to get one field value by another field value</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-one-field-value-by-another-field-value/m-p/1211281#M388511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want to display the literals rather than a sum then this should work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;=only({&amp;lt;date={'2016/01/05'}&amp;gt;}num)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;= concat({&amp;lt;date= {"&amp;gt;=('&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;2016/01/02'&lt;/SPAN&gt;)&amp;lt;=('&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;2016/01/04'&lt;/SPAN&gt;)"}&amp;gt; } num,',')&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Oct 2016 06:54:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-one-field-value-by-another-field-value/m-p/1211281#M388511</guid>
      <dc:creator>adamdavi3s</dc:creator>
      <dc:date>2016-10-12T06:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to get one field value by another field value</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-one-field-value-by-another-field-value/m-p/1211282#M388512</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here are some more options&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) &lt;STRONG&gt;=Sum({&amp;lt;date = {"$(='&amp;gt;=' &amp;amp; Date(MakeDate(2016, 1, 2)) &amp;amp; '&amp;lt;=' &amp;amp; Date(MakeDate(2016, 1, 4)))"}&amp;gt;} num)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) &lt;STRONG&gt;=Sum({&amp;lt;date = {"$(=Date(MakeDate(2016, 1, 5)))"}&amp;gt;} num)&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/140359_Capture.PNG" style="height: 177px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Oct 2016 09:11:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-one-field-value-by-another-field-value/m-p/1211282#M388512</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2016-10-12T09:11:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to get one field value by another field value</title>
      <link>https://community.qlik.com/t5/QlikView/How-to-get-one-field-value-by-another-field-value/m-p/1211283#M388513</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;maybe this&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Oct 2016 07:45:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/How-to-get-one-field-value-by-another-field-value/m-p/1211283#M388513</guid>
      <dc:creator />
      <dc:date>2016-10-14T07:45:52Z</dc:date>
    </item>
  </channel>
</rss>

