<?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: Maintenance report in Data Stories Gallery</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Maintenance-report/m-p/823783#M3078</link>
    <description>&lt;P&gt;Please share Power BI file if possible. Thanks&lt;/P&gt;</description>
    <pubDate>Mon, 21 Oct 2019 19:02:00 GMT</pubDate>
    <dc:creator>mahesh009</dc:creator>
    <dc:date>2019-10-21T19:02:00Z</dc:date>
    <item>
      <title>Maintenance report</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Maintenance-report/m-p/89078#M436</link>
      <description>&lt;P&gt;This is one of my first reports in order to control maintenance costs. This is a very simple version an it was my first full report made about 1 year ago problably a lot of mistakes this as already evolved to other features.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;MFelix&lt;/P&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;eyJrIjoiNjcwMWI2OTctNWZjZi00NTUyLTkzODEtZmQ4YTE4ZDhhNWI5IiwidCI6IjMwNDljMmY0LWNlMWUtNDlkOS1iZTYwLTNiNmFiNDAyODQ0YiIsImMiOjh9&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 09 Jan 2017 19:14:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Maintenance-report/m-p/89078#M436</guid>
      <dc:creator>MFelix</dc:creator>
      <dc:date>2017-01-09T19:14:45Z</dc:date>
    </item>
    <item>
      <title>Re: Maintenance report</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Maintenance-report/m-p/412859#M1876</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="14361" data-lia-user-login="MFelix" class="lia-mention lia-mention-user"&gt;MFelix&lt;/a&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You have done an excellent work here! I have a question. How do you create the "Top N" filter in the 3rd page? I'm trying to do something like that but I don't know how to do it.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance!&lt;/P&gt;</description>
      <pubDate>Tue, 08 May 2018 13:45:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Maintenance-report/m-p/412859#M1876</guid>
      <dc:creator>angova</dc:creator>
      <dc:date>2018-05-08T13:45:32Z</dc:date>
    </item>
    <item>
      <title>Re: Maintenance report</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Maintenance-report/m-p/413037#M1877</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="48669" data-lia-user-login="angova" class="lia-mention lia-mention-user"&gt;angova&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your compliment.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The Top N is made using a table for the ranking numbers and 3 measures. Currently using the What if Parameter you can create a parameter from 1 to 100 and make it incremental.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then create 3 measures:&lt;/P&gt;
&lt;PRE&gt;Rank =
RANKX (
    ALLSELECTED ( Table[Column] );
    CALCULATE ( SUM ( Table[ValuesColumn] ) )
)


TOP_N = if ([Rank]&amp;lt;= MAX('TopN'[TopN]);1,0;BLANK())


Top N Total =
CALCULATE (
    SUM ( Table[ValuesColumn] );
    FILTER ( ALL ( Table[Column] ); [Rank] &amp;lt;= MAX ( 'TopN'[TopN] ) )
)&lt;/PRE&gt;
&lt;P&gt;Then Top N Total gives you the total based on the filter by the slicer of the TOP N and the TOP_N measure should be added as a filter (visual or page) and set to Not Blank this will filter out all the results you don't have when choosing the N filter.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;MFelix&lt;/P&gt;</description>
      <pubDate>Tue, 08 May 2018 17:46:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Maintenance-report/m-p/413037#M1877</guid>
      <dc:creator>MFelix</dc:creator>
      <dc:date>2018-05-08T17:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: Maintenance report</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Maintenance-report/m-p/413463#M1878</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="14361" data-lia-user-login="MFelix" class="lia-mention lia-mention-user"&gt;MFelix&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That works! Thank you so much.&lt;/P&gt;</description>
      <pubDate>Wed, 09 May 2018 07:26:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Maintenance-report/m-p/413463#M1878</guid>
      <dc:creator>angova</dc:creator>
      <dc:date>2018-05-09T07:26:36Z</dc:date>
    </item>
    <item>
      <title>Re: Maintenance report</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Maintenance-report/m-p/540122#M2289</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="14361" data-lia-user-login="MFelix" class="lia-mention lia-mention-user"&gt;MFelix&lt;/a&gt;&amp;nbsp;I am amazed by how ease and great to read is this report. Did you make it available in any link? Is there a way to donwload it the way I could play with it?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for sharing.&lt;/P&gt;
&lt;P&gt;Cordially,&lt;/P&gt;
&lt;P&gt;anizioneto_ca&lt;/P&gt;</description>
      <pubDate>Thu, 11 Oct 2018 17:17:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Maintenance-report/m-p/540122#M2289</guid>
      <dc:creator>anizioneto_ca</dc:creator>
      <dc:date>2018-10-11T17:17:37Z</dc:date>
    </item>
    <item>
      <title>Re: Maintenance report</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Maintenance-report/m-p/573917#M2381</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="14361" data-lia-user-login="MFelix" class="lia-mention lia-mention-user"&gt;MFelix&lt;/a&gt;! I really love your dash! Is it possible share with me? Layout is so&amp;nbsp; clean!&lt;/P&gt;
&lt;P&gt;My email is renatagabardo@gmail.com&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Tks and congrats!!&lt;/P&gt;</description>
      <pubDate>Tue, 27 Nov 2018 20:59:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Maintenance-report/m-p/573917#M2381</guid>
      <dc:creator>Renata</dc:creator>
      <dc:date>2018-11-27T20:59:13Z</dc:date>
    </item>
    <item>
      <title>Re: Maintenance report</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Maintenance-report/m-p/823783#M3078</link>
      <description>&lt;P&gt;Please share Power BI file if possible. Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 21 Oct 2019 19:02:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Maintenance-report/m-p/823783#M3078</guid>
      <dc:creator>mahesh009</dc:creator>
      <dc:date>2019-10-21T19:02:00Z</dc:date>
    </item>
    <item>
      <title>Re: Maintenance report</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Maintenance-report/m-p/1048664#M3833</link>
      <description>&lt;P&gt;Good afternoon Miguel, I love the maintenace report. I have something simliar which is Prevent Maintenace and have issues even Beginning with the Data model any suggestion or can you send me a copy so I can see how you were able to arrange you data table.&lt;/P&gt;
&lt;P&gt;lydriarivera@gmail.com.&lt;/P&gt;
&lt;P&gt;thank you&lt;/P&gt;</description>
      <pubDate>Sat, 25 Apr 2020 22:35:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Maintenance-report/m-p/1048664#M3833</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-04-25T22:35:19Z</dc:date>
    </item>
  </channel>
</rss>

