<?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: Sum Budget To The Current Month in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Sum-Budget-To-The-Current-Month/m-p/1740202#M56659</link>
    <description>&lt;P&gt;This sum returns null result.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 01 Sep 2020 12:31:55 GMT</pubDate>
    <dc:creator>j0nimost1</dc:creator>
    <dc:date>2020-09-01T12:31:55Z</dc:date>
    <item>
      <title>Sum Budget To The Current Month</title>
      <link>https://community.qlik.com/t5/App-Development/Sum-Budget-To-The-Current-Month/m-p/1740194#M56656</link>
      <description>&lt;P&gt;I have two unrelated views one has amounts the other has budgets.&lt;/P&gt;&lt;P&gt;- The Budget view has Budget Dates i.e 1st date of the month for the current year and Budget Amounts for that month.&lt;/P&gt;&lt;P&gt;- The Amounts view has Amounts and Captured Dates for the respective amounts.&lt;/P&gt;&lt;P&gt;I wish to make a gauge of the two; my struggle is summing the Budget from the start of the Year to the Current Month.&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I go about this?&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 18:10:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Sum-Budget-To-The-Current-Month/m-p/1740194#M56656</guid>
      <dc:creator>j0nimost1</dc:creator>
      <dc:date>2024-11-16T18:10:04Z</dc:date>
    </item>
    <item>
      <title>Re: Sum Budget To The Current Month</title>
      <link>https://community.qlik.com/t5/App-Development/Sum-Budget-To-The-Current-Month/m-p/1740197#M56658</link>
      <description>&lt;P&gt;may be below&lt;/P&gt;&lt;P&gt;-sum({&amp;lt;BudgetDate ={"&amp;gt;=$(=date(yearstart(max(BudgetDate))))&amp;lt;=$(=date(max(BudgetDate)))"}&amp;gt;}BudgetAmount)&lt;/P&gt;</description>
      <pubDate>Tue, 01 Sep 2020 12:07:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Sum-Budget-To-The-Current-Month/m-p/1740197#M56658</guid>
      <dc:creator>Kushal_Chawda</dc:creator>
      <dc:date>2020-09-01T12:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: Sum Budget To The Current Month</title>
      <link>https://community.qlik.com/t5/App-Development/Sum-Budget-To-The-Current-Month/m-p/1740202#M56659</link>
      <description>&lt;P&gt;This sum returns null result.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Sep 2020 12:31:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Sum-Budget-To-The-Current-Month/m-p/1740202#M56659</guid>
      <dc:creator>j0nimost1</dc:creator>
      <dc:date>2020-09-01T12:31:55Z</dc:date>
    </item>
    <item>
      <title>Re: Sum Budget To The Current Month</title>
      <link>https://community.qlik.com/t5/App-Development/Sum-Budget-To-The-Current-Month/m-p/1740219#M56662</link>
      <description>&lt;P&gt;I understand you have data until the latest month. Why can't assign a numeric flag to each year in load script.&amp;nbsp;&lt;/P&gt;&lt;P&gt;1 for the latest, 2 for the last year and so on ( you can achieve this using various ways in load script)&lt;/P&gt;&lt;P&gt;2020 - 1&amp;nbsp;&lt;/P&gt;&lt;P&gt;2019 -2&lt;/P&gt;&lt;P&gt;and so on&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;and finally in front end, use the expression below to get data of latest year:&lt;/P&gt;&lt;P&gt;Sum({&amp;lt;YearFlag ={1}&amp;gt;} BudgetAmount)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Qlikgards,&lt;/P&gt;&lt;P&gt;AB&lt;/P&gt;</description>
      <pubDate>Tue, 01 Sep 2020 12:58:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Sum-Budget-To-The-Current-Month/m-p/1740219#M56662</guid>
      <dc:creator>AbhijitBansode</dc:creator>
      <dc:date>2020-09-01T12:58:16Z</dc:date>
    </item>
    <item>
      <title>Re: Sum Budget To The Current Month</title>
      <link>https://community.qlik.com/t5/App-Development/Sum-Budget-To-The-Current-Month/m-p/1740231#M56663</link>
      <description>&lt;P&gt;I am summing budget to the current month. The Budget view has all monthly budgets for the current year.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Sep 2020 13:18:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Sum-Budget-To-The-Current-Month/m-p/1740231#M56663</guid>
      <dc:creator>j0nimost1</dc:creator>
      <dc:date>2020-09-01T13:18:47Z</dc:date>
    </item>
    <item>
      <title>Re: Sum Budget To The Current Month</title>
      <link>https://community.qlik.com/t5/App-Development/Sum-Budget-To-The-Current-Month/m-p/1740484#M56681</link>
      <description>&lt;P&gt;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/336"&gt;@Kushal_Chawda&lt;/a&gt;&amp;nbsp;can you fix the solution you gave?&lt;/P&gt;</description>
      <pubDate>Wed, 02 Sep 2020 04:44:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Sum-Budget-To-The-Current-Month/m-p/1740484#M56681</guid>
      <dc:creator>j0nimost1</dc:creator>
      <dc:date>2020-09-02T04:44:54Z</dc:date>
    </item>
  </channel>
</rss>

