<?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: Last Full Month in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154491#M906333</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dave,&lt;/P&gt;&lt;P&gt;Make a variable with this code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(YourDate = MonthEnd(YourDate),YourMonth,Month(Addmonths(YourDate),-1))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With this code you will test if current month is complete, if it is true you will get current month, else, you will get last complete month.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select your report with this var.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Jun 2016 14:13:41 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2016-06-20T14:13:41Z</dc:date>
    <item>
      <title>Last Full Month</title>
      <link>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154488#M906330</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 am trying to run a report for last full month regardless of the date&lt;/P&gt;&lt;P&gt;For example if I run the report now I would like to retrieve May's data. It also needs to be dynamic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help would be much 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/Last-Full-Month/m-p/1154488#M906330</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Last Full Month</title>
      <link>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154489#M906331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dave,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you post a copy of your report as it exists now. Usually you would use AddMonths function to achieve this but if I can see what you're trying to accomplish, I might be able to help more.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff;"&gt;AddMonths&lt;/SPAN&gt;(&lt;SPAN style="color: #0000ff;"&gt;Max&lt;/SPAN&gt;(&lt;SPAN style="color: #800000;"&gt;YourDate&lt;/SPAN&gt;),-1)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2016 13:23:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154489#M906331</guid>
      <dc:creator>ciaran_mcgowan</dc:creator>
      <dc:date>2016-06-20T13:23:46Z</dc:date>
    </item>
    <item>
      <title>Re: Last Full Month</title>
      <link>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154490#M906332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you Need to run your Report with last months data you have two Options depending on your datamodel&lt;/P&gt;&lt;P&gt;1) you have field which contains full date Format (day, month, year)&lt;/P&gt;&lt;P&gt;&amp;nbsp; then you Need to run your Report with&lt;/P&gt;&lt;P&gt;&amp;nbsp; (yourdatefield &amp;gt;= monthstart(addmonths(today(),-1)) and (yourdatefield &amp;lt;= monthend(addmonths(today,-1))&lt;/P&gt;&lt;P&gt;2) if you have a month field and year field&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; (youryearfield = year(addmonths(today(),-1)) and&amp;nbsp;&amp;nbsp; (youmonthfield = month(addmonths(today(),-1))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2016 13:32:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154490#M906332</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-20T13:32:57Z</dc:date>
    </item>
    <item>
      <title>Re: Last Full Month</title>
      <link>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154491#M906333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dave,&lt;/P&gt;&lt;P&gt;Make a variable with this code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If(YourDate = MonthEnd(YourDate),YourMonth,Month(Addmonths(YourDate),-1))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With this code you will test if current month is complete, if it is true you will get current month, else, you will get last complete month.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select your report with this var.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2016 14:13:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154491#M906333</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-20T14:13:41Z</dc:date>
    </item>
    <item>
      <title>Re: Last Full Month</title>
      <link>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154492#M906334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you might need a 'floor' in this to be sure no time element causing issues...&lt;/P&gt;&lt;P&gt;if(YourDate=Floor(MonthEnd(YourDate)), Floor(MonthEnd(YourDate)), Floor(MonthEnd(AddMonths(YourDate,-1))))&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2016 14:56:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154492#M906334</guid>
      <dc:creator>juleshartley</dc:creator>
      <dc:date>2016-06-20T14:56:35Z</dc:date>
    </item>
    <item>
      <title>Re: Last Full Month</title>
      <link>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154493#M906335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the field is date format, and not is TimeStamp format, you don't need to use Floor function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2016 15:17:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154493#M906335</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-20T15:17:34Z</dc:date>
    </item>
    <item>
      <title>Re: Last Full Month</title>
      <link>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154494#M906336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this errors after the and ay ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2016 16:11:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154494#M906336</guid>
      <dc:creator />
      <dc:date>2016-06-20T16:11:51Z</dc:date>
    </item>
    <item>
      <title>Re: Last Full Month</title>
      <link>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154495#M906337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can you post sample?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jun 2016 19:46:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154495#M906337</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-20T19:46:26Z</dc:date>
    </item>
    <item>
      <title>Re: Last Full Month</title>
      <link>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154496#M906338</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dave,&lt;/P&gt;&lt;P&gt;Try this expression,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;sum({&amp;lt;Date={"&amp;gt;=$(vMonthStart)&amp;lt;=$(vMonthEnd)"},Month=,Quarter=,FullYear=&amp;gt;} Amount)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Here&lt;/P&gt;&lt;P&gt;vMonthStart=&lt;STRONG&gt;Date(MonthStart(Max(@_Date)),'DD/MM/YYYY')&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;vMonthEnd=&lt;STRONG&gt;Date(Max(@_Date),'DD/MM/YYYY')&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 05:27:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154496#M906338</guid>
      <dc:creator>susovan</dc:creator>
      <dc:date>2016-06-21T05:27:04Z</dc:date>
    </item>
    <item>
      <title>Re: Last Full Month</title>
      <link>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154497#M906339</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Sum&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;({&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Bill Date]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt; {&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"&amp;gt;= monthstart(addmonths(today(),-1)) and [Bill Date] &amp;lt;= monthend(addmonths(today(),-1))"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;} &amp;gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Bill Value]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;I am trying to sum bill value by bill date&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 08:58:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154497#M906339</guid>
      <dc:creator />
      <dc:date>2016-06-21T08:58:03Z</dc:date>
    </item>
    <item>
      <title>Re: Last Full Month</title>
      <link>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154498#M906340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Susovan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply. I don't want to add variables as the report needs to be dynamic&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 08:59:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154498#M906340</guid>
      <dc:creator />
      <dc:date>2016-06-21T08:59:16Z</dc:date>
    </item>
    <item>
      <title>Re: Last Full Month</title>
      <link>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154499#M906341</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Syntax is wrong (not sure if my Syntax is correct - could not test it)&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Sum&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;({&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Bill Date]=&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;{&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"&amp;gt;= $(=monthstart(addmonths(today(),-1)))&amp;lt;=$(=monthend(addmonths(today(),-1)))"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;} &amp;gt;} &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Bill Value]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 09:12:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154499#M906341</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-21T09:12:58Z</dc:date>
    </item>
    <item>
      <title>Re: Last Full Month</title>
      <link>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154500#M906342</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So, you can try this&lt;/P&gt;&lt;P&gt;&lt;STRONG style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;sum({&amp;lt;Date={"&amp;gt;=$(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;=&lt;/SPAN&gt;&lt;STRONG style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;Date(MonthStart(Max(@_Date)),'DD/MM/YYYY')&lt;/STRONG&gt;)&amp;lt;=$(&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 12px; background-color: #f2f2f2;"&gt;=&lt;/SPAN&gt;&lt;STRONG style="font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d; background-color: #f2f2f2;"&gt;Date(Max(@_Date),'DD/MM/YYYY')&lt;/STRONG&gt;)"},Month=,Quarter=,FullYear=&amp;gt;} Amount)&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 09:19:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154500#M906342</guid>
      <dc:creator>susovan</dc:creator>
      <dc:date>2016-06-21T09:19:25Z</dc:date>
    </item>
    <item>
      <title>Re: Last Full Month</title>
      <link>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154501#M906343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thought it was the syntax. This display data going back to March, what do I need to do to change it to May only&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 09:46:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154501#M906343</guid>
      <dc:creator />
      <dc:date>2016-06-21T09:46:42Z</dc:date>
    </item>
    <item>
      <title>Re: Last Full Month</title>
      <link>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154502#M906344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this (to get only may data)&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Sum&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;({&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Bill Date]=&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;{&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"&amp;gt;= 01.05.2016&amp;lt;=31.05.2016"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;} &amp;gt;} &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Bill Value]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 11:45:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154502#M906344</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-21T11:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: Last Full Month</title>
      <link>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154503#M906345</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;is there a more dynamic way to do it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jun 2016 15:04:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154503#M906345</guid>
      <dc:creator />
      <dc:date>2016-06-21T15:04:02Z</dc:date>
    </item>
    <item>
      <title>Re: Last Full Month</title>
      <link>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154504#M906346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can you specify more in Detail your requirements?&lt;/P&gt;&lt;P&gt;if you have the data in a variable for instance&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Sum&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;({&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Bill Date]=&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;{&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"&amp;gt;= $(=monthstart(variablemonthdate))&amp;lt;=$(=monthend(variablemonthdate))"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;} &amp;gt;} &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Bill Value]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;or if you have two variable for start and end date&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Sum&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;({&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Bill Date]=&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;{&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"&amp;gt;= $(=variablemonthstart)&amp;lt;=$(=variablemonthend)"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;} &amp;gt;} &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Bill Value]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;) &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;please check that variable and field have same dateformat&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Jun 2016 06:34:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154504#M906346</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-22T06:34:23Z</dc:date>
    </item>
    <item>
      <title>Re: Last Full Month</title>
      <link>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154505#M906347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rduolf - I'm nearly I think. I've put the formula in as detailed above&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #0000ff; font-size: 8pt;"&gt;Sum&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;({&amp;lt;&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Bill Date]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;={&lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;"&amp;gt;= $(=monthstart(addmonths(today(),-1)) &amp;lt;=$(=monthend(addmonths(today(),-1)))"&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;} &amp;gt;} &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 8pt;"&gt;[Bill Value]&lt;/SPAN&gt;&lt;SPAN style="font-size: 8pt;"&gt;)&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 8pt;"&gt;Unfortuante;y I'm getting data from March to the end of May any idea why. I only want the data from the last full month&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Jun 2016 14:17:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154505#M906347</guid>
      <dc:creator />
      <dc:date>2016-06-23T14:17:06Z</dc:date>
    </item>
    <item>
      <title>Re: Last Full Month</title>
      <link>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154506#M906348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please try this Expression in a TextBox&lt;/P&gt;&lt;P&gt;=&lt;SPAN style="color: #800000;"&gt;monthstart(addmonths(today(),-1)) &amp;amp; '-' &amp;amp; max([Bill Date])&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;does both dates are from same Format?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #800000;"&gt;does first Expression Shows 1.05.2016?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jun 2016 07:50:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154506#M906348</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-06-24T07:50:09Z</dc:date>
    </item>
    <item>
      <title>Re: Last Full Month</title>
      <link>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154507#M906349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the expression shows 01/05/2016-42544......not sure why as the date shows correctly in the table&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jun 2016 08:36:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Last-Full-Month/m-p/1154507#M906349</guid>
      <dc:creator />
      <dc:date>2016-06-24T08:36:29Z</dc:date>
    </item>
  </channel>
</rss>

