<?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: Pipeline Calculation (daily total Orders $ from the last business day + today total Invoice $ in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Pipeline-Calculation-daily-total-Orders-from-the-last-business/m-p/2204847#M51844</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="338919" data-lia-user-login="LogixAdex" class="lia-mention lia-mention-user"&gt;LogixAdex&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please check if this is what you want:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Pipeline = 
VAR ThisDay_ =
    MAX ( 'Sales Orders'[Order Date] )
VAR LastWorkingDay_ =
    CALCULATE (
        MAX ( '0 - Calendar 00-25'[Date] ),
        '0 - Calendar 00-25'[Date] &amp;lt; ThisDay_,
        '0 - Calendar 00-25'[WeekNo] IN { 2, 3, 4, 5, 6 }
    )
VAR Sales_Orders_total =
    CALCULATE (
        SUM ( 'Sales Orders'[Amount] ),
        FILTER (
            ALLSELECTED ( '0 - Calendar 00-25'[Date] ),
            '0 - Calendar 00-25'[Date] = LastWorkingDay_
        )
    )
VAR Invoices_total =
    SUM ( 'Invoices'[Amount] )
RETURN
    Sales_Orders_total + Invoices_total
&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Icey&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;SPAN&gt;, then please consider&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 24 Nov 2021 03:09:00 GMT</pubDate>
    <dc:creator>Icey</dc:creator>
    <dc:date>2021-11-24T03:09:00Z</dc:date>
    <item>
      <title>Pipeline Calculation (daily total Orders $ from the last business day + today total Invoice $</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Pipeline-Calculation-daily-total-Orders-from-the-last-business/m-p/2191980#M51262</link>
      <description>&lt;P&gt;I need help to create a Pipeline report using the following:&lt;BR /&gt;&lt;BR /&gt;-Invoicing happens the next business day,&amp;nbsp;Like this:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Orders from Monday will be invoiced Tuesday&lt;BR /&gt;Orders from Tuesday will be invoiced Wednesday&lt;BR /&gt;Orders from Wednesday will be invoiced Thursday&lt;BR /&gt;Orders from Thursday will be invoiced Friday&lt;BR /&gt;and&lt;BR /&gt;Orders from Friday will be invoiced Monday&lt;BR /&gt;&lt;BR /&gt;Pipeline is the sum of:&lt;BR /&gt;Sales Orders total $ amount from the last business day&lt;BR /&gt;+&lt;BR /&gt;Invoices total $ from today (Business day)&lt;BR /&gt;&lt;BR /&gt;There are 2 tables (Sales Orders and Invoices) Both contain pretty much the same fields (Doc. #, Posting date, Customer, etc.)&lt;BR /&gt;There is a third table with a calendar where both table have a relationship based on the "Posting_Date"&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;How I can create a formula where i can accomodate the fridays Sales Orders with Monday Invoices?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Nov 2021 08:17:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Pipeline-Calculation-daily-total-Orders-from-the-last-business/m-p/2191980#M51262</guid>
      <dc:creator>LogixAdex</dc:creator>
      <dc:date>2021-11-16T08:17:18Z</dc:date>
    </item>
    <item>
      <title>Re: Pipeline Calculation (daily total Orders $ from the last business day + today total Invoice $</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Pipeline-Calculation-daily-total-Orders-from-the-last-business/m-p/2197818#M51526</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="338919" data-lia-user-login="LogixAdex" class="lia-mention lia-mention-user"&gt;LogixAdex&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;BR /&gt;&lt;FONT size="3"&gt;How I can create a formula where i can accomodate the fridays Sales Orders with Monday Invoices?&lt;/FONT&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;You can use a "IsWorkingDay" column as another filter.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;IsWorkingDay =
IF ( WEEKDAY ( 'Calendar'[Date], 1 ) IN { 2, 3, 4, 5, 6 }, 1, 0 )
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you need specific operations, please provide sample data.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Reference:&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490" target="_blank"&gt;How to Get Your Question Answered Quickly - Microsoft Power BI Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.powerbi.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank"&gt;How to provide sample data in the Power BI Forum - Microsoft Power BI Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Icey&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;SPAN&gt;, then please consider&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 19 Nov 2021 03:11:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Pipeline-Calculation-daily-total-Orders-from-the-last-business/m-p/2197818#M51526</guid>
      <dc:creator>Icey</dc:creator>
      <dc:date>2021-11-19T03:11:39Z</dc:date>
    </item>
    <item>
      <title>Re: Pipeline Calculation (daily total Orders $ from the last business day + today total Invoice $</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Pipeline-Calculation-daily-total-Orders-from-the-last-business/m-p/2203003#M51745</link>
      <description>&lt;P&gt;Thanks Icey&lt;BR /&gt;Here is a PBIX file with sample data:&lt;BR /&gt;&lt;A title="Shared PBIX" href="https://personal.syncedtool.com/shares/file/pnPIqDG6eL7/" target="_self"&gt;https://personal.syncedtool.com/shares/file/pnPIqDG6eL7/&lt;/A&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thanks in advance&lt;/P&gt;</description>
      <pubDate>Tue, 23 Nov 2021 06:45:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Pipeline-Calculation-daily-total-Orders-from-the-last-business/m-p/2203003#M51745</guid>
      <dc:creator>LogixAdex</dc:creator>
      <dc:date>2021-11-23T06:45:50Z</dc:date>
    </item>
    <item>
      <title>Re: Pipeline Calculation (daily total Orders $ from the last business day + today total Invoice $</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Pipeline-Calculation-daily-total-Orders-from-the-last-business/m-p/2204847#M51844</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="338919" data-lia-user-login="LogixAdex" class="lia-mention lia-mention-user"&gt;LogixAdex&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please check if this is what you want:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Pipeline = 
VAR ThisDay_ =
    MAX ( 'Sales Orders'[Order Date] )
VAR LastWorkingDay_ =
    CALCULATE (
        MAX ( '0 - Calendar 00-25'[Date] ),
        '0 - Calendar 00-25'[Date] &amp;lt; ThisDay_,
        '0 - Calendar 00-25'[WeekNo] IN { 2, 3, 4, 5, 6 }
    )
VAR Sales_Orders_total =
    CALCULATE (
        SUM ( 'Sales Orders'[Amount] ),
        FILTER (
            ALLSELECTED ( '0 - Calendar 00-25'[Date] ),
            '0 - Calendar 00-25'[Date] = LastWorkingDay_
        )
    )
VAR Invoices_total =
    SUM ( 'Invoices'[Amount] )
RETURN
    Sales_Orders_total + Invoices_total
&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Icey&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;SPAN&gt;, then please consider&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Nov 2021 03:09:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Pipeline-Calculation-daily-total-Orders-from-the-last-business/m-p/2204847#M51844</guid>
      <dc:creator>Icey</dc:creator>
      <dc:date>2021-11-24T03:09:00Z</dc:date>
    </item>
    <item>
      <title>Re: Pipeline Calculation (daily total Orders $ from the last business day + today total Invoice $</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Pipeline-Calculation-daily-total-Orders-from-the-last-business/m-p/2206492#M51940</link>
      <description>&lt;P&gt;Thanks Icey for your time and reply.&lt;BR /&gt;It is not getting the results that I'm expecting. Please look at the attached image.&lt;BR /&gt;Basically invoices are generated the next business day. As per the picture It should trow the Sales Orders Amount from 11/12&amp;nbsp; and invoices from 11/15&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Nov 2021 20:11:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Pipeline-Calculation-daily-total-Orders-from-the-last-business/m-p/2206492#M51940</guid>
      <dc:creator>LogixAdex</dc:creator>
      <dc:date>2021-11-24T20:11:06Z</dc:date>
    </item>
    <item>
      <title>Re: Pipeline Calculation (daily total Orders $ from the last business day + today total Invoice $</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Pipeline-Calculation-daily-total-Orders-from-the-last-business/m-p/2210274#M52138</link>
      <description>&lt;P&gt;Icey: I found what the issue is. Total sales should be as per this example on the picture&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Total sales (Pipeline) for last business day: Last business day Sales Orders + today's Invoices,&lt;BR /&gt;&lt;BR /&gt;Examples:&lt;BR /&gt;1) Total sales for 11/12 = $ 68,144.82 now showing under 11/15&lt;BR /&gt;2)&amp;nbsp;Total sales for 11/11 = $ 71,727.42 now showing under 11/12&lt;BR /&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 27 Nov 2021 12:45:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Pipeline-Calculation-daily-total-Orders-from-the-last-business/m-p/2210274#M52138</guid>
      <dc:creator>LogixAdex</dc:creator>
      <dc:date>2021-11-27T12:45:30Z</dc:date>
    </item>
    <item>
      <title>Re: Pipeline Calculation (daily total Orders $ from the last business day + today total Invoice $</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Pipeline-Calculation-daily-total-Orders-from-the-last-business/m-p/2217373#M52516</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="338919" data-lia-user-login="LogixAdex" class="lia-mention lia-mention-user"&gt;LogixAdex&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry to reply late.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do you mean you want something like so?&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Pipeline 2 = 
VAR ThisDay_ =
    MAX ( 'Sales Orders'[Order Date] )
VAR NextWorkingDay_ =
    CALCULATE (
        MIN ( '0 - Calendar 00-25'[Date] ),
        '0 - Calendar 00-25'[Date] &amp;gt; ThisDay_,
        '0 - Calendar 00-25'[WeekNo] IN { 2, 3, 4, 5, 6 }
    )
VAR Sales_Orders_total =
    SUM ( 'Sales Orders'[Amount] )
VAR Invoices_total =
CALCULATE(
    SUM ( 'Invoices'[Amount] ),
        FILTER (
            ALLSELECTED ( '0 - Calendar 00-25'[Date] ),
            '0 - Calendar 00-25'[Date] = NextWorkingDay_
        )
    )
RETURN
    Sales_Orders_total + Invoices_total
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Icey&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;If this post&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;SPAN&gt;, then please consider&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Dec 2021 05:36:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Pipeline-Calculation-daily-total-Orders-from-the-last-business/m-p/2217373#M52516</guid>
      <dc:creator>Icey</dc:creator>
      <dc:date>2021-12-02T05:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: Pipeline Calculation (daily total Orders $ from the last business day + today total Invoice $</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Pipeline-Calculation-daily-total-Orders-from-the-last-business/m-p/2322402#M58031</link>
      <description>&lt;P&gt;Hi. The solution provided worked with the provided resources however when I tried with the actual resource it displays the calendar and the sum plus the chossen date. Please see picture.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Source provide for testing and working with pbi&lt;BR /&gt;&lt;img /&gt;&lt;BR /&gt;&lt;BR /&gt;Actual source (OData.Feed) that needs to be part of the report&lt;BR /&gt;&lt;img /&gt;&lt;BR /&gt;Using the same relationship&lt;BR /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;But when I try to use the same measure&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;0 -Invoices total $ from today (Business day) = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;ThisDay_&lt;/SPAN&gt;&lt;SPAN&gt; =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;MAX&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;'SalesOrders'[Order Date]&lt;/SPAN&gt;&lt;SPAN&gt; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;NextWorkingDay_&lt;/SPAN&gt;&lt;SPAN&gt; =&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;MIN&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;'0 - Calendar'[Date]&lt;/SPAN&gt;&lt;SPAN&gt; ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;'0 - Calendar'[Date]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;gt; &lt;/SPAN&gt;&lt;SPAN&gt;ThisDay_&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;'0 - Calendar'[WeekNo]&lt;/SPAN&gt; &lt;SPAN&gt;IN&lt;/SPAN&gt;&lt;SPAN&gt; { &lt;/SPAN&gt;&lt;SPAN&gt;2&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;3&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;4&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;5&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;6&lt;/SPAN&gt;&lt;SPAN&gt; }&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;SUM&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;'Invoices_2'[Amount]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;ALLSELECTED&lt;/SPAN&gt;&lt;SPAN&gt; ( &lt;/SPAN&gt;&lt;SPAN&gt;'0 - Calendar'[Date]&lt;/SPAN&gt;&lt;SPAN&gt; ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;'0 - Calendar'[Date]&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;NextWorkingDay_&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;I get the following&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;img /&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 07 Feb 2022 06:46:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Pipeline-Calculation-daily-total-Orders-from-the-last-business/m-p/2322402#M58031</guid>
      <dc:creator>LogixAdex</dc:creator>
      <dc:date>2022-02-07T06:46:04Z</dc:date>
    </item>
  </channel>
</rss>

