<?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: Set expressions for current Quarter and Month sales. in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867623#M655394</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sunny- If you go to the QVW you attached to this tread you may recall it.&lt;/P&gt;&lt;P&gt;basically i am looking for 1st PO in Order for each item based on the PO date.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Jul 2015 17:29:57 GMT</pubDate>
    <dc:creator>maahivee</dc:creator>
    <dc:date>2015-07-21T17:29:57Z</dc:date>
    <item>
      <title>Set expressions for current Quarter and Month sales.</title>
      <link>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867575#M655346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello friends,&lt;/P&gt;&lt;P&gt;I have a requirement in my project, Where I have to write a set expression to determine current month and current quarter sales &lt;/P&gt;&lt;P&gt;But the problem is that i have tried so many different expressions and is not able to achieve it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have tried it in these ways &lt;/P&gt;&lt;P&gt;=num(Sum({$&amp;lt;Month = {'$(=Num(month(today()-1)))'}&amp;gt;} [Extended Price] ) ,'$#,###.') keeping in mind that the date in my DB is in Number format. I don't know where and what am i doing wrong. But this is kind of an urgent requirement for me.. Please help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 22:47:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867575#M655346</guid>
      <dc:creator>maahivee</dc:creator>
      <dc:date>2015-07-01T22:47:08Z</dc:date>
    </item>
    <item>
      <title>Re: Set expressions for current Quarter and Month sales.</title>
      <link>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867576#M655347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Try this for this Month (Note you are defining Current Month as Jun(Since today is 1st July and Today's Month - 1 would be Jun:&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;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&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;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&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;STRONG&gt;=Num(Sum({$&amp;lt;Month = {"$(=Num(Month(Today())-1))"}&amp;gt;} [Extended Price] ) ,'$#,###')&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 22:50:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867576#M655347</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-07-01T22:50:37Z</dc:date>
    </item>
    <item>
      <title>Re: Set expressions for current Quarter and Month sales.</title>
      <link>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867577#M655348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You probably can improve your code if you have a field which is created in the script as &lt;STRONG&gt;MonthName(Date) as MonthYear&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Current Month Price&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;=Num(Sum({$&amp;lt;MonthYear = {"$(=MonthName(AddMonths(Today(), -1)))"}&amp;gt;} [Extended Price] ) ,'$#,###')&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Current Quarter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not sure how you define your quarter (Jan-Mar is Quarter 1?)&lt;STRONG&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 22:53:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867577#M655348</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-07-01T22:53:03Z</dc:date>
    </item>
    <item>
      <title>Re: Set expressions for current Quarter and Month sales.</title>
      <link>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867578#M655349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sunny, Thank you very much for the quick reply.&lt;/P&gt;&lt;P&gt;I have tried the 1st expression and is giving 0 where as it should be somewhere around 4 million.&lt;/P&gt;&lt;P&gt;If i want to try the second expression, to make the changes in the script i already have this one in my script&amp;nbsp; &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;Date (monthstart (TempDate) , 'MMM_YYYY') as MonthYear,&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;Also yes in my script we have 4 quarters jan-mar as quarter1 and so on.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 23:02:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867578#M655349</guid>
      <dc:creator>maahivee</dc:creator>
      <dc:date>2015-07-01T23:02:01Z</dc:date>
    </item>
    <item>
      <title>Re: Set expressions for current Quarter and Month sales.</title>
      <link>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867579#M655350</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;&lt;STRONG&gt;=Num(Sum({$&amp;lt;MonthYear =&lt;/STRONG&gt;&lt;STRONG style="color: #ff0000;"&gt; {"$(=Date(AddMonths(Today(), -1), 'MMM_YYYY'))"}&amp;gt;&lt;/STRONG&gt;&lt;STRONG&gt;} [Extended Price] ) ,'$#,###')&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="text-decoration: line-through;"&gt;Actually, the above won't work since it's only a single date. Would you be able to add another MonthYear as&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="text-decoration: line-through;"&gt;MonthName(TempDate) as MonthYear1?&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 23:04:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867579#M655350</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-07-01T23:04:51Z</dc:date>
    </item>
    <item>
      <title>Re: Set expressions for current Quarter and Month sales.</title>
      <link>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867580#M655351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did that work? Really? &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 23:08:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867580#M655351</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-07-01T23:08:20Z</dc:date>
    </item>
    <item>
      <title>Re: Set expressions for current Quarter and Month sales.</title>
      <link>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867581#M655352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you so much sunny. That really worked and to me you are a genius each time you come up solution to every question. Appreciate it very much. what should be used for current quarter sales.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 23:08:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867581#M655352</guid>
      <dc:creator>maahivee</dc:creator>
      <dc:date>2015-07-01T23:08:24Z</dc:date>
    </item>
    <item>
      <title>Re: Set expressions for current Quarter and Month sales.</title>
      <link>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867582#M655353</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It definitely did. I wish i would have been trained by you in qlikview &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/grin.png" /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 23:10:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867582#M655353</guid>
      <dc:creator>maahivee</dc:creator>
      <dc:date>2015-07-01T23:10:31Z</dc:date>
    </item>
    <item>
      <title>Re: Set expressions for current Quarter and Month sales.</title>
      <link>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867583#M655354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this for the Quarter:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;=Num(Sum({$&amp;lt;MonthYear =&lt;/STRONG&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #ff0000;"&gt; {"$(='&amp;gt;=' &amp;amp; Date(QuarterStart(AddMonths(Today(), -1)), 'MMM_YYYY') &amp;amp; '&amp;lt;=' &amp;amp; &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #ff0000;"&gt;Date(QuarterEnd(AddMonths(Today(), -1)), 'MMM_YYYY'))&lt;/STRONG&gt;"}&amp;gt;&lt;/STRONG&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;} [Extended Price] ) ,'$#,###')&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;BR /&gt;&lt;/STRONG&gt;Make sure this gave you the correct range in a text box when you put this: &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #ff0000;"&gt;='&amp;gt;=' &amp;amp; Date(QuarterStart(AddMonths(Today(), -1)), 'MMM_YYYY') &amp;amp; '&amp;lt;=' &amp;amp; &lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #ff0000;"&gt;Date(QuarterEnd(AddMonths(Today(), -1)), 'MMM_YYYY')&lt;/STRONG&gt;&lt;/STRONG&gt; in a text box&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 23:12:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867583#M655354</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-07-01T23:12:26Z</dc:date>
    </item>
    <item>
      <title>Re: Set expressions for current Quarter and Month sales.</title>
      <link>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867584#M655355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hahahaha I am glad you think that way &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;. &lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;I am glad I am able to help.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 23:14:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867584#M655355</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-07-01T23:14:10Z</dc:date>
    </item>
    <item>
      <title>Re: Set expressions for current Quarter and Month sales.</title>
      <link>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867585#M655356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sunny, I am getting a wired number like this $1.708e+007 but when when i put the other expression in a text box it is giving the april-jun.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 23:22:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867585#M655356</guid>
      <dc:creator>maahivee</dc:creator>
      <dc:date>2015-07-01T23:22:22Z</dc:date>
    </item>
    <item>
      <title>Re: Set expressions for current Quarter and Month sales.</title>
      <link>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867586#M655357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is this not the output you are expecting? Is there a way for you to check what you are expecting to get as result?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 23:26:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867586#M655357</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-07-01T23:26:43Z</dc:date>
    </item>
    <item>
      <title>Re: Set expressions for current Quarter and Month sales.</title>
      <link>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867587#M655358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes i am expecting around 17Mllion as result.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 23:27:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867587#M655358</guid>
      <dc:creator>maahivee</dc:creator>
      <dc:date>2015-07-01T23:27:23Z</dc:date>
    </item>
    <item>
      <title>Re: Set expressions for current Quarter and Month sales.</title>
      <link>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867588#M655359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So the only issue is the formating?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 23:28:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867588#M655359</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-07-01T23:28:22Z</dc:date>
    </item>
    <item>
      <title>Re: Set expressions for current Quarter and Month sales.</title>
      <link>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867589#M655360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also since we just entered into Q3 I want to show Q2 sales. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 23:29:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867589#M655360</guid>
      <dc:creator>maahivee</dc:creator>
      <dc:date>2015-07-01T23:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: Set expressions for current Quarter and Month sales.</title>
      <link>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867590#M655361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Isn't this already showing Q2 Sales (April - June)?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 23:31:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867590#M655361</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-07-01T23:31:49Z</dc:date>
    </item>
    <item>
      <title>Re: Set expressions for current Quarter and Month sales.</title>
      <link>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867591#M655362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I thought it is just showing error since it is giving e.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 23:33:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867591#M655362</guid>
      <dc:creator>maahivee</dc:creator>
      <dc:date>2015-07-01T23:33:40Z</dc:date>
    </item>
    <item>
      <title>Re: Set expressions for current Quarter and Month sales.</title>
      <link>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867592#M655363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, I think the formatting needs to be fixed:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #575757;"&gt;&lt;STRONG&gt;=Num(Sum({$&amp;lt;MonthYear = {"$(='&amp;gt;=' &amp;amp; Date(QuarterStart(AddMonths(Today(), -1)), 'MMM_YYYY') &amp;amp; '&amp;lt;=' &amp;amp; Date(QuarterEnd(AddMonths(Today(), -1)), 'MMM_YYYY'))"}&amp;gt;} [Extended Price] ) ,&lt;SPAN style="color: #ff0000;"&gt;'$#,##0'&lt;/SPAN&gt;)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try different formats here&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;$#,##0 or $#,##0.00 and see if something works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 23:36:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867592#M655363</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-07-01T23:36:24Z</dc:date>
    </item>
    <item>
      <title>Re: Set expressions for current Quarter and Month sales.</title>
      <link>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867593#M655364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much sunny changing the format did work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 23:40:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867593#M655364</guid>
      <dc:creator>maahivee</dc:creator>
      <dc:date>2015-07-01T23:40:35Z</dc:date>
    </item>
    <item>
      <title>Re: Set expressions for current Quarter and Month sales.</title>
      <link>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867594#M655365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;‌Awesome... I am glad it worked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Jul 2015 23:45:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Set-expressions-for-current-Quarter-and-Month-sales/m-p/867594#M655365</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-07-01T23:45:18Z</dc:date>
    </item>
  </channel>
</rss>

