<?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: Delivery performance in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Delivery-performance/m-p/2925765#M96099</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="476233" data-lia-user-login="MagnusSvendsen" class="lia-mention lia-mention-user"&gt;MagnusSvendsen&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a measure like this :&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = 
VAR _SUM=0-SUMX('Table',[NetworkingDays])
var _mindate=MIN('Table'[Shipment_Date])
var _maxdate=MAX('Table'[Shipment_Date])
var _diff=DAY(_maxdate)-DAY(_mindate)-1
return _SUM/_diff&lt;/LI-CODE&gt;
&lt;P&gt;Then you will get a result like below :&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;NetworkingDays is a measure .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Community Support Team _ Ailsa Tao&lt;BR /&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;I&gt;Accept it as the solution&lt;/I&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&lt;/P&gt;</description>
    <pubDate>Thu, 24 Nov 2022 02:42:36 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-11-24T02:42:36Z</dc:date>
    <item>
      <title>Delivery performance</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Delivery-performance/m-p/2924337#M95990</link>
      <description>&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have found the networking days between our confirmed delivery date and shipment date. If we ship according to what we have confirmed to the customer, the value will be 2.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now I need to find a value that tells me, how many deliveries, we ship according to what we promised = value = 2.&lt;/P&gt;&lt;P&gt;Therefore I need to have a %number, which says how many % of the column networking days = 2.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In the below case, if we imagine that it was all our deliveries for November, we delivered 33,33%. on time.&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;img /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Networking days is a measured value&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&lt;SPAN class=""&gt;&lt;img /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Nov 2022 11:39:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Delivery-performance/m-p/2924337#M95990</guid>
      <dc:creator>MagnusSvendsen</dc:creator>
      <dc:date>2022-11-23T11:39:15Z</dc:date>
    </item>
    <item>
      <title>Re: Delivery performance</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Delivery-performance/m-p/2925091#M96058</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="476233" data-lia-user-login="MagnusSvendsen" class="lia-mention lia-mention-user"&gt;MagnusSvendsen&lt;/a&gt; , Assume networkingday is column then &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Divide(&lt;/P&gt;
&lt;P&gt;countx(filter(Table, Table[networkingday] &amp;gt;=0), Table[Document]),&lt;/P&gt;
&lt;P&gt;count(Table[Document])&lt;/P&gt;
&lt;P&gt;)&lt;/P&gt;</description>
      <pubDate>Wed, 23 Nov 2022 17:11:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Delivery-performance/m-p/2925091#M96058</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-11-23T17:11:30Z</dc:date>
    </item>
    <item>
      <title>Re: Delivery performance</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Delivery-performance/m-p/2925765#M96099</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="476233" data-lia-user-login="MagnusSvendsen" class="lia-mention lia-mention-user"&gt;MagnusSvendsen&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Create a measure like this :&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = 
VAR _SUM=0-SUMX('Table',[NetworkingDays])
var _mindate=MIN('Table'[Shipment_Date])
var _maxdate=MAX('Table'[Shipment_Date])
var _diff=DAY(_maxdate)-DAY(_mindate)-1
return _SUM/_diff&lt;/LI-CODE&gt;
&lt;P&gt;Then you will get a result like below :&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;NetworkingDays is a measure .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Community Support Team _ Ailsa Tao&lt;BR /&gt;If this post &lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider &lt;STRONG&gt;&lt;I&gt;Accept it as the solution&lt;/I&gt;&lt;/STRONG&gt; to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Nov 2022 02:42:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Delivery-performance/m-p/2925765#M96099</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-11-24T02:42:36Z</dc:date>
    </item>
    <item>
      <title>Re: Delivery performance</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Delivery-performance/m-p/2926069#M96124</link>
      <description>&lt;P&gt;Thanks!!&lt;/P&gt;</description>
      <pubDate>Thu, 24 Nov 2022 06:27:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Delivery-performance/m-p/2926069#M96124</guid>
      <dc:creator>MagnusSvendsen</dc:creator>
      <dc:date>2022-11-24T06:27:21Z</dc:date>
    </item>
    <item>
      <title>Re: Delivery performance</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Delivery-performance/m-p/2926070#M96125</link>
      <description>&lt;P&gt;Thanks!!&lt;/P&gt;</description>
      <pubDate>Thu, 24 Nov 2022 06:27:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Delivery-performance/m-p/2926070#M96125</guid>
      <dc:creator>MagnusSvendsen</dc:creator>
      <dc:date>2022-11-24T06:27:28Z</dc:date>
    </item>
    <item>
      <title>Re: Delivery performance</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Delivery-performance/m-p/2926561#M96162</link>
      <description>&lt;P&gt;Dear Alisa,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for the reply, it worked until I added a new line.&lt;/P&gt;&lt;P&gt;Something went wrong, as I now have added a new line, which also shows 2 in networking days, but it gives me the value 400% and not 200%&lt;/P&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;</description>
      <pubDate>Thu, 24 Nov 2022 09:15:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Delivery-performance/m-p/2926561#M96162</guid>
      <dc:creator>MagnusSvendsen</dc:creator>
      <dc:date>2022-11-24T09:15:22Z</dc:date>
    </item>
    <item>
      <title>Re: Delivery performance</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Delivery-performance/m-p/2926598#M96165</link>
      <description>&lt;P&gt;Thanks for the reply Ailsa,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I worked until I added some new lines, because now 3 out of 5 lines are 2 networking days which supposed to give me a 60%, But it gives me 29%.&lt;/P&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;</description>
      <pubDate>Thu, 24 Nov 2022 09:24:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Delivery-performance/m-p/2926598#M96165</guid>
      <dc:creator>MagnusSvendsen</dc:creator>
      <dc:date>2022-11-24T09:24:21Z</dc:date>
    </item>
  </channel>
</rss>

