<?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: Hello , in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Hello/m-p/853241#M999052</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if([DateField]&amp;gt;=date(yearstart(today())) and [DateField]&amp;lt;getselected([DateField]),[DataField],Null())&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I haven't tested this but that is the logic I would start with.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Jun 2015 20:47:34 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2015-06-18T20:47:34Z</dc:date>
    <item>
      <title>Hello ,</title>
      <link>https://community.qlik.com/t5/QlikView/Hello/m-p/853239#M999050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can anyone help me generate a formula to display data from the beginning of the year to the current selection( NOT CURRENT DATE).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex: input data&lt;/P&gt;&lt;P&gt; jan- 2&lt;/P&gt;&lt;P&gt;feb-3&lt;/P&gt;&lt;P&gt;march-5&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so if we select, the output should be:&lt;/P&gt;&lt;P&gt;jan=2&lt;/P&gt;&lt;P&gt;feb=5&lt;/P&gt;&lt;P&gt;march=10&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jun 2015 12:41:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hello/m-p/853239#M999050</guid>
      <dc:creator />
      <dc:date>2015-06-18T12:41:40Z</dc:date>
    </item>
    <item>
      <title>Re: Hello ,</title>
      <link>https://community.qlik.com/t5/QlikView/Hello/m-p/853240#M999051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set a variable like vyear = '&amp;gt;=' &amp;amp; Date(YearStart(Today())) &amp;amp; '&amp;lt;=' &amp;amp; Date(Today())&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in your expression, give like SUM({&amp;lt;Month=, Date={"$(&lt;SPAN style="font-size: 13.3333330154419px;"&gt;vyear &lt;/SPAN&gt;)"}&amp;gt;} output field name)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make sure you have proper calendar with year, month, date...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jun 2015 12:56:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hello/m-p/853240#M999051</guid>
      <dc:creator />
      <dc:date>2015-06-18T12:56:56Z</dc:date>
    </item>
    <item>
      <title>Re: Hello ,</title>
      <link>https://community.qlik.com/t5/QlikView/Hello/m-p/853241#M999052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if([DateField]&amp;gt;=date(yearstart(today())) and [DateField]&amp;lt;getselected([DateField]),[DataField],Null())&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I haven't tested this but that is the logic I would start with.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Jun 2015 20:47:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hello/m-p/853241#M999052</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-06-18T20:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: Hello ,</title>
      <link>https://community.qlik.com/t5/QlikView/Hello/m-p/853242#M999053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Thanks for your response; but i think your solution will give till the current date; but is actuallly expected is:&lt;/P&gt;&lt;P&gt;if the Month: "Feb " is selected now, data should get populated only TILL FEB data ie(though we are in June, if i select FEB, data should be from Jan 1st to Feb 28th)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jun 2015 09:38:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hello/m-p/853242#M999053</guid>
      <dc:creator />
      <dc:date>2015-06-19T09:38:55Z</dc:date>
    </item>
    <item>
      <title>Re: Hello ,</title>
      <link>https://community.qlik.com/t5/QlikView/Hello/m-p/853243#M999054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the above solution will work as per your selection only.&lt;/P&gt;&lt;P&gt;if you select feb, it will give data from year start till feb.&lt;/P&gt;&lt;P&gt;have you tried the above expression??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jun 2015 09:42:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Hello/m-p/853243#M999054</guid>
      <dc:creator />
      <dc:date>2015-06-19T09:42:40Z</dc:date>
    </item>
  </channel>
</rss>

