<?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 Monthly Goal Trending in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Monthly-Goal-Trending/m-p/40510#M1237</link>
    <description>&lt;P&gt;So I have a goal table containing the MONTHLY goal for a particular measure which I have stored in a goals table using the first day of the month for the month that the goal is applied to (1/1/2016 would have a goal value of 100).&amp;nbsp; For the actuals, we actually capture that daily and I am trying to determine if we are "on target" or not based on the goal and the actuals MTD.&amp;nbsp; I am not sure how to properly determine what the daily value of the goal should be in order to determine if our actuals are trending to be able to&amp;nbsp;make that goal.&amp;nbsp; Using the KPI visual it turns green only after the date where we meet the goal, but doesn't help to determine trending since my goal table only has that monthly goal.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help to point me in the right direction would be greatly appreciated.&lt;/P&gt;</description>
    <pubDate>Sun, 05 Jun 2016 14:22:13 GMT</pubDate>
    <dc:creator>sanjay_akut</dc:creator>
    <dc:date>2016-06-05T14:22:13Z</dc:date>
    <item>
      <title>Monthly Goal Trending</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Monthly-Goal-Trending/m-p/40510#M1237</link>
      <description>&lt;P&gt;So I have a goal table containing the MONTHLY goal for a particular measure which I have stored in a goals table using the first day of the month for the month that the goal is applied to (1/1/2016 would have a goal value of 100).&amp;nbsp; For the actuals, we actually capture that daily and I am trying to determine if we are "on target" or not based on the goal and the actuals MTD.&amp;nbsp; I am not sure how to properly determine what the daily value of the goal should be in order to determine if our actuals are trending to be able to&amp;nbsp;make that goal.&amp;nbsp; Using the KPI visual it turns green only after the date where we meet the goal, but doesn't help to determine trending since my goal table only has that monthly goal.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any help to point me in the right direction would be greatly appreciated.&lt;/P&gt;</description>
      <pubDate>Sun, 05 Jun 2016 14:22:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Monthly-Goal-Trending/m-p/40510#M1237</guid>
      <dc:creator>sanjay_akut</dc:creator>
      <dc:date>2016-06-05T14:22:13Z</dc:date>
    </item>
    <item>
      <title>Re: Monthly Goal Trending</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Monthly-Goal-Trending/m-p/40512#M1238</link>
      <description>&lt;P&gt;Could you use a Gauge control to show this instead of a KPI visual? You could set the value as the sum of the daily actuals and the maximum value to the Monthly Goal. You could also set the Target Value&amp;nbsp;to be a calculation based on days in the month.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Actuals.PNG" style="width: 627px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/6984i35E8C8071E612900/image-dimensions/627x345?v=v2" width="627" height="345" role="button" title="Actuals.PNG" alt="Actuals.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Sam Lester (MSFT)&lt;/P&gt;</description>
      <pubDate>Sun, 05 Jun 2016 15:13:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Monthly-Goal-Trending/m-p/40512#M1238</guid>
      <dc:creator>SamLester</dc:creator>
      <dc:date>2016-06-05T15:13:45Z</dc:date>
    </item>
    <item>
      <title>Re: Monthly Goal Trending</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Monthly-Goal-Trending/m-p/42248#M1288</link>
      <description>&lt;P&gt;Thanks for the suggestion, this is a good start.&amp;nbsp; Any suggestions on creating the calculation using the days in a month, so if the monthly goal was 30 I could know that on the 11th day of the month, if my value is 11 I am "on target"?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 11 Jun 2016 13:36:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Monthly-Goal-Trending/m-p/42248#M1288</guid>
      <dc:creator>sanjay_akut</dc:creator>
      <dc:date>2016-06-11T13:36:10Z</dc:date>
    </item>
    <item>
      <title>Re: Monthly Goal Trending</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Monthly-Goal-Trending/m-p/42279#M1289</link>
      <description>&lt;P&gt;Sure, you can use DAX date/time calculations to determine this. Set the target value of the gauge to this calculated column to reflect the calculated goal.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;DAY(now()) / DAY(EOMONTH(NOW(),0)) * Goals[MonthlyGoal]&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Today is June 12th.&lt;/P&gt;&lt;P&gt;DAY(now()) returns 12&amp;nbsp;&amp;nbsp;&lt;BR /&gt;DAY(EOMONTH(now(),0) returns 30&amp;nbsp;&amp;nbsp; (number of days in June)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So the calculation would be:&lt;/P&gt;&lt;P&gt;current day / days in month * montly goal&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks,&lt;BR /&gt;Sam Lester (MSFT)&lt;/P&gt;</description>
      <pubDate>Sun, 12 Jun 2016 08:34:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Monthly-Goal-Trending/m-p/42279#M1289</guid>
      <dc:creator>SamLester</dc:creator>
      <dc:date>2016-06-12T08:34:00Z</dc:date>
    </item>
  </channel>
</rss>

