<?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: OTIF Report in Data Stories Gallery</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/4096496#M12972</link>
    <description>&lt;P&gt;Dear Sir/Madam,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope this message finds you well.&lt;/P&gt;&lt;P&gt;I am writing to express my interest in the OTIF report template you have developed, which I found to be exceptional. I would greatly appreciate it if you could share a soft copy of this template with me.&lt;/P&gt;&lt;P&gt;Thank you in advance for your assistance.&lt;/P&gt;</description>
    <pubDate>Tue, 13 Aug 2024 03:00:46 GMT</pubDate>
    <dc:creator>AndyMS</dc:creator>
    <dc:date>2024-08-13T03:00:46Z</dc:date>
    <item>
      <title>OTIF Report</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/885761#M3226</link>
      <description>&lt;P&gt;The report was designed to showcase the &lt;STRONG&gt;On Time In Full&lt;/STRONG&gt; (OTIF) status of all orders for the past two years.&lt;/P&gt;&lt;P&gt;Each shipment is assessed on two criteria:&lt;/P&gt;&lt;P&gt;1) If the full quantity was shipped&lt;/P&gt;&lt;P&gt;2) If the order was shipped on the Due Date&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The report has an &lt;STRONG&gt;Allowable Window&lt;/STRONG&gt;, where a Customer might be able to accept shipments upto sixty day early or late.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Once a user has selected the Allowable Window, the&lt;/P&gt;&lt;P&gt;rest of the report will use this window to calculate the OTIF status.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The &lt;STRONG&gt;Trend Buttons&lt;/STRONG&gt; allow users to investigate through the report without having to leave the report page and keeping any applied filters.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The Columns, Parameters and DAX:&lt;BR /&gt;&lt;/STRONG&gt;There is one additional column, two parameters and a host of measures.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Days - the only column&lt;/STRONG&gt;&lt;BR /&gt;The data has columns Due Date and Ship Date, therefore we can use DATEDIFF to calculate the difference in the two dates. I use a column for this.&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Days = DATEDIFF( OTIF[Ship Date], OTIF[Due Date], DAY )&lt;BR /&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;Early and Late Windows - the two parameters&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;P&gt;The Early and Late Parameters are set up as Whole Number, and they automatically generate measures: Early Value and Late Value. We use these as the allowable window.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;The Measures&lt;/STRONG&gt;&lt;/P&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;STRONG&gt;In Full&lt;BR /&gt;&lt;/STRONG&gt;If an order has not been fully delivered then the order must be late, so we can work out the completeness of the order using a measure to compare the Order Qty and the Delivered Qty:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;In Full = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;IF(&lt;BR /&gt;&amp;nbsp; SUM(OTIF[Order Qty]) = SUM(OTIF[Delivered Qty]),&lt;BR /&gt;&amp;nbsp; &amp;nbsp; "In Full", "Partial"&lt;BR /&gt;&amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;With these three pieces of information we can work out if an order was delivered In Full and On Time, including any user entered Allowable Window:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;On Time Shipment&lt;BR /&gt;&lt;/STRONG&gt;To count as an on time shipment, the order must be In Full and the days difference must be less than the allowable early and the allowable late. We will count the number of rows on the OTIF table to fit these criteria.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;On-Time Shipments = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; COUNTROWS( OTIF ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; FILTER( OTIF&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Early[Early Value] &amp;gt;= OTIF[Days] &amp;amp;&amp;amp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; (-Late[Late Value]) &amp;lt;= OTIF[Days] &amp;amp;&amp;amp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [In Full] = "In Full"&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Early Shipments&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;These are one criteria easier than On Time, if the Days is greater than the allowable early and it's In Full, then the shipment was early:&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Early Shipments = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;CALCULATE(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; COUNTROWS( OTIF ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; FILTER(&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;OTIF,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; OTIF[Days] &amp;gt; Early[Early Value] &amp;amp;&amp;amp;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; [In Full] = "In Full"&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;&lt;STRONG&gt;Late Shipments&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;The late shipment involves an extra criteria to check tha tthe order qty has been fully shipped. If the order was shipped after the due date OR the order is partial, then it will be counted as Late:&lt;BR /&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Late Shipments = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; CALCULATE(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; COUNTROWS( OTIF ),&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; FILTER( OTIF&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; OTIF[Days] &amp;lt; -Late[Late Value] ||&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; OTIF[In Full] = "Partial"&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;BR /&gt;&lt;STRONG&gt;OTIF Graph&lt;/STRONG&gt;&lt;BR /&gt;The OTIF graph is made up using the Date heirarchy from the Date table and then adding the three measures as values&lt;BR /&gt;&lt;BR /&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;STRONG&gt;Status&lt;/STRONG&gt;&lt;/DIV&gt;&lt;DIV&gt;Now that the data has been assessed, we can report back the Status of each individual row, with another measure:&lt;BR /&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Status = &lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;IF(&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; COUNTROWS( OTIF ) &amp;gt;0,&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; IF( [Early Shipments] &amp;gt;0, "Early",&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; IF( [Late Shipments] &amp;gt;0, "Late",&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; "On-Time")&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; )&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="reportid hidden"&gt;eyJrIjoiNmIwYjAxZmEtMzE4OC00MDExLTlhYjAtM2FiMmMyMWQxNzUxIiwidCI6ImM3ZWE5NDI0LWNkZWMtNGE5Zi1iYzljLWE3MDkwOTMwNjk0NCJ9&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 11 Aug 2023 15:53:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/885761#M3226</guid>
      <dc:creator>Andy100Rob</dc:creator>
      <dc:date>2023-08-11T15:53:46Z</dc:date>
    </item>
    <item>
      <title>Re: OTIF Report</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/1346671#M4540</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;My company is interested in getting your report - could you tell me hwo it would be possible ? What is the price for it including possibility of further edition ?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Witold Adamiak&lt;/P&gt;</description>
      <pubDate>Fri, 04 Sep 2020 07:54:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/1346671#M4540</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-09-04T07:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: OTIF Report</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/1729681#M5123</link>
      <description>&lt;P&gt;Hi Andy100Rob,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Am i able to get a complete copy of this report, or other examples, is it free or can it be purchased.&amp;nbsp; I have been asked to do a similar report for my company, however i am a very new Power Bi User, so i need some guidance, i was more of an Excel user in the past, however very excited to start using Power BI.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 18 Mar 2021 08:29:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/1729681#M5123</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-03-18T08:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: OTIF Report</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/1791205#M5214</link>
      <description>&lt;P&gt;I've put the DAX up, if you still wanted the report&lt;/P&gt;</description>
      <pubDate>Sun, 18 Apr 2021 18:36:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/1791205#M5214</guid>
      <dc:creator>Andy100Rob</dc:creator>
      <dc:date>2021-04-18T18:36:00Z</dc:date>
    </item>
    <item>
      <title>Re: OTIF Report</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/1791206#M5215</link>
      <description>&lt;P&gt;I've put the DAX up, if you still wanted it.&lt;/P&gt;</description>
      <pubDate>Sun, 18 Apr 2021 18:36:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/1791206#M5215</guid>
      <dc:creator>Andy100Rob</dc:creator>
      <dc:date>2021-04-18T18:36:26Z</dc:date>
    </item>
    <item>
      <title>Re: OTIF Report</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/1791243#M5216</link>
      <description>&lt;P&gt;Sorry, they have still not made a decision&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 18 Apr 2021 21:07:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/1791243#M5216</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-04-18T21:07:01Z</dc:date>
    </item>
    <item>
      <title>Re: OTIF Report</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/1791787#M5217</link>
      <description>&lt;P&gt;I'm stil interested in getting the report...&lt;/P&gt;</description>
      <pubDate>Mon, 19 Apr 2021 06:06:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/1791787#M5217</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-04-19T06:06:44Z</dc:date>
    </item>
    <item>
      <title>Re: OTIF Report</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/1843296#M5305</link>
      <description>&lt;P&gt;Great report. I was having a hard time trying to desing an OTIF report for my organization until I came accross this post. Thanks for sharing!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 May 2021 17:01:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/1843296#M5305</guid>
      <dc:creator>cneri17</dc:creator>
      <dc:date>2021-05-14T17:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: OTIF Report</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/2223858#M6284</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry, I'm new here.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I love this and it's perfect for what I'd like to use, is it possible to download it with the data so I can use it, or is this protected?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry for the dim question, I'm new to Power BI.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks again&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>Mon, 06 Dec 2021 21:38:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/2223858#M6284</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-12-06T21:38:08Z</dc:date>
    </item>
    <item>
      <title>Re: OTIF Report</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/2846051#M8461</link>
      <description>&lt;P&gt;This is indeed very helpful. I could complete my OTD report in couple of hours with above mentioned reference Dax. Interested in seeing more KPIs like these related to supply chain..&lt;/P&gt;</description>
      <pubDate>Mon, 17 Oct 2022 09:17:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/2846051#M8461</guid>
      <dc:creator>Nikita_1990</dc:creator>
      <dc:date>2022-10-17T09:17:42Z</dc:date>
    </item>
    <item>
      <title>Re: OTIF Report</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/2916392#M8784</link>
      <description>&lt;P&gt;Can you please share dataset for the dashboard, I will like to use it for some other portfolio project&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 19 Nov 2022 14:29:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/2916392#M8784</guid>
      <dc:creator>Ugochukwu</dc:creator>
      <dc:date>2022-11-19T14:29:34Z</dc:date>
    </item>
    <item>
      <title>Re: OTIF Report</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/2940221#M8833</link>
      <description>&lt;P&gt;Hi Andy100Rob, thanks for sharing and I've spent a lot of time trying to achieve a new OTIF report at work that unfortunately, does not look anywhere near as nice as the one you have created.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Can I be cheeky and ask if you could share the file with me so I can try and use it for my data?&lt;BR /&gt;&lt;BR /&gt;Thanks a million&lt;/P&gt;</description>
      <pubDate>Wed, 30 Nov 2022 21:31:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/2940221#M8833</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-11-30T21:31:12Z</dc:date>
    </item>
    <item>
      <title>Re: OTIF Report</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/3205307#M9975</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Great report. Gave me some ideas to implement in my organization&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Question: How to create this "mini windowed" visualizations like below?&lt;/P&gt;&lt;P&gt;It's some kind of use of drill trought?&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>Tue, 25 Apr 2023 14:41:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/3205307#M9975</guid>
      <dc:creator>jurkowskij</dc:creator>
      <dc:date>2023-04-25T14:41:38Z</dc:date>
    </item>
    <item>
      <title>Re: OTIF Report</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/3205345#M9976</link>
      <description>&lt;P&gt;That's a Tooltip page.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The page only has that graph on it. You just need to add a new page, set it as a Tool tip and then from the original graph, you can choose to use the specific tool tip page.&lt;/P&gt;</description>
      <pubDate>Tue, 25 Apr 2023 14:57:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/3205345#M9976</guid>
      <dc:creator>Andy100Rob</dc:creator>
      <dc:date>2023-04-25T14:57:15Z</dc:date>
    </item>
    <item>
      <title>Re: OTIF Report</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/3352653#M10808</link>
      <description>&lt;P&gt;Can I have the report please ? I have a project to show OTIF Performance and I need it !&lt;/P&gt;&lt;P&gt;Thank you !&lt;/P&gt;</description>
      <pubDate>Thu, 27 Jul 2023 07:39:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/3352653#M10808</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-07-27T07:39:07Z</dc:date>
    </item>
    <item>
      <title>Re: OTIF Report</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/3392534#M10966</link>
      <description>&lt;P&gt;hello, is it possible if i could have a copy of the report please so i can understand it better.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Aug 2023 12:41:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/3392534#M10966</guid>
      <dc:creator>Power_rookie</dc:creator>
      <dc:date>2023-08-22T12:41:58Z</dc:date>
    </item>
    <item>
      <title>Re: OTIF Report</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/3407310#M11028</link>
      <description>&lt;P&gt;Can I get a copy of this template?&lt;/P&gt;</description>
      <pubDate>Wed, 30 Aug 2023 18:29:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/3407310#M11028</guid>
      <dc:creator>KK303</dc:creator>
      <dc:date>2023-08-30T18:29:56Z</dc:date>
    </item>
    <item>
      <title>Re: OTIF Report</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/3443073#M11179</link>
      <description>&lt;P&gt;Hi, please share the report with me?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Sep 2023 12:50:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/3443073#M11179</guid>
      <dc:creator>rinaredelinghuy</dc:creator>
      <dc:date>2023-09-22T12:50:50Z</dc:date>
    </item>
    <item>
      <title>Re: OTIF Report</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/3470838#M11275</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would like to know the DAX for STATUS part.&lt;/P&gt;&lt;P&gt;how do you use&amp;nbsp;&lt;SPAN&gt;allowable window value.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Oct 2023 09:58:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/3470838#M11275</guid>
      <dc:creator>NBW</dc:creator>
      <dc:date>2023-10-11T09:58:50Z</dc:date>
    </item>
    <item>
      <title>Re: OTIF Report</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/3625843#M11811</link>
      <description>&lt;P&gt;Great Work!! Is there any possibility to get the template?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;OTIF&lt;/P&gt;</description>
      <pubDate>Tue, 09 Jan 2024 10:32:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/OTIF-Report/m-p/3625843#M11811</guid>
      <dc:creator>OTIF</dc:creator>
      <dc:date>2024-01-09T10:32:05Z</dc:date>
    </item>
  </channel>
</rss>

