<?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 Forcasting Last 90 Days in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Forcasting-Last-90-Days/m-p/3164088#M113721</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;We are trying to forecast forward how many cases we will ship based on the Past 90 days excluding weekends and applying a weighted percentage increase based on what time of the month we are in. The first third is a 1.0 multiplier second 1.05, Third 1.12.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;Below is a screenshot of the table and the output along with the formula that we are using. Currently the issue is its only looking at the the specific date for the past 90 days but its not accounting for the weekend.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Volume Forecast =&lt;/P&gt;&lt;P&gt;VAR&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; MonthlyLY = Calculate([Customer Cases Shipped],DATEADD('Calendar Table'[Date],-1,MONTH))&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; VAR&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; MONTHLY2 = CALCULATE([Customer Cases Shipped],DATEADD('Calendar Table'[Date], -2,MONTH))&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; VAR&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; MONTHLY3 = CALCULATE([Customer Cases Shipped],DATEADD('Calendar Table'[Date], -3,MONTH))&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; RETURN&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DIVIDE(MonthlyLY + MONTHLY2 + MONTHLY3 , 3, 0)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 30 Mar 2023 18:10:04 GMT</pubDate>
    <dc:creator>Bryanna</dc:creator>
    <dc:date>2023-03-30T18:10:04Z</dc:date>
    <item>
      <title>Forcasting Last 90 Days</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Forcasting-Last-90-Days/m-p/3164088#M113721</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;We are trying to forecast forward how many cases we will ship based on the Past 90 days excluding weekends and applying a weighted percentage increase based on what time of the month we are in. The first third is a 1.0 multiplier second 1.05, Third 1.12.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;Below is a screenshot of the table and the output along with the formula that we are using. Currently the issue is its only looking at the the specific date for the past 90 days but its not accounting for the weekend.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Volume Forecast =&lt;/P&gt;&lt;P&gt;VAR&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; MonthlyLY = Calculate([Customer Cases Shipped],DATEADD('Calendar Table'[Date],-1,MONTH))&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; VAR&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; MONTHLY2 = CALCULATE([Customer Cases Shipped],DATEADD('Calendar Table'[Date], -2,MONTH))&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; VAR&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; MONTHLY3 = CALCULATE([Customer Cases Shipped],DATEADD('Calendar Table'[Date], -3,MONTH))&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; RETURN&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DIVIDE(MonthlyLY + MONTHLY2 + MONTHLY3 , 3, 0)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Mar 2023 18:10:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Forcasting-Last-90-Days/m-p/3164088#M113721</guid>
      <dc:creator>Bryanna</dc:creator>
      <dc:date>2023-03-30T18:10:04Z</dc:date>
    </item>
    <item>
      <title>Re: Forcasting Last 90 Days</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Forcasting-Last-90-Days/m-p/3168134#M114108</link>
      <description>&lt;LI-CODE lang="markup"&gt; excluding weekends and applying a weighted percentage increase based on what time of the month we are in. &lt;/LI-CODE&gt;
&lt;P&gt;That is guaranteed to end in tears and frustration. Weeks and months are not compatible. Please explain what a third is for a month like August&amp;nbsp; with&amp;nbsp; 31 days.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And you haven't even mentioned holidays yet.&lt;/P&gt;</description>
      <pubDate>Mon, 03 Apr 2023 00:31:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Forcasting-Last-90-Days/m-p/3168134#M114108</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2023-04-03T00:31:52Z</dc:date>
    </item>
    <item>
      <title>Re: Forcasting Last 90 Days</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Forcasting-Last-90-Days/m-p/3169636#M114208</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The months are broken down by date so &amp;lt; 11, 1 &amp;lt; 22 ,2 and &amp;gt; 22, is 3..if we could take holidays into account as well that would be great but it wasnt brought up in the initial ask.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So youre saying the best way to do a forcast is month to month and not week to week?&lt;/P&gt;</description>
      <pubDate>Mon, 03 Apr 2023 14:18:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Forcasting-Last-90-Days/m-p/3169636#M114208</guid>
      <dc:creator>Bryanna</dc:creator>
      <dc:date>2023-04-03T14:18:47Z</dc:date>
    </item>
    <item>
      <title>Re: Forcasting Last 90 Days</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Forcasting-Last-90-Days/m-p/3170468#M114264</link>
      <description>&lt;P&gt;no, I would rather do it by working days.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2023 00:24:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Forcasting-Last-90-Days/m-p/3170468#M114264</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2023-04-04T00:24:37Z</dc:date>
    </item>
  </channel>
</rss>

