<?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: Flitering in Desktop</title>
    <link>https://community.fabric.microsoft.com/t5/Desktop/Flitering/m-p/1811471#M704792</link>
    <description>&lt;P&gt;I got this&amp;nbsp;&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>Wed, 28 Apr 2021 12:38:40 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2021-04-28T12:38:40Z</dc:date>
    <item>
      <title>Flitering</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Flitering/m-p/1809629#M704284</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Is it possible to write a measure that will return the a list of the highlighted item?&amp;nbsp;&lt;/SPAN&gt;&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;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Apr 2021 19:04:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Flitering/m-p/1809629#M704284</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-04-27T19:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: Flitering</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Flitering/m-p/1810098#M704406</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt; , You can create a measure like&lt;/P&gt;
&lt;P&gt;Countrows(filter(Table, Table[Name] in {"Process Audit Sweing 2", "Process Audit Loading &amp;amp; Swing" , "rocess Audit Foundation", "rocess Audit Unit Building"))&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can plot this with name in visual, if needed&lt;/P&gt;</description>
      <pubDate>Wed, 28 Apr 2021 02:38:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Flitering/m-p/1810098#M704406</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2021-04-28T02:38:00Z</dc:date>
    </item>
    <item>
      <title>Re: Flitering</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Flitering/m-p/1811471#M704792</link>
      <description>&lt;P&gt;I got this&amp;nbsp;&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>Wed, 28 Apr 2021 12:38:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Flitering/m-p/1811471#M704792</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-04-28T12:38:40Z</dc:date>
    </item>
    <item>
      <title>Re: Flitering</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Flitering/m-p/1811498#M704799</link>
      <description>&lt;P&gt;This is what I got, I wanted to have seleted items in list, if I were to put them in a table.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&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>Wed, 28 Apr 2021 12:47:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Flitering/m-p/1811498#M704799</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-04-28T12:47:17Z</dc:date>
    </item>
    <item>
      <title>Re: Flitering</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Flitering/m-p/1815673#M705862</link>
      <description>&lt;P&gt;&amp;nbsp;Hi,&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try to create a calculate column like below:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Return =
IF (
    'Table'[name]
        IN {
        { "Sewing1" },
        { "Sewing3" },
        { "Receiving" },
        { "Quilting" },
        { "Matt Build" }
    },
    'Table'[name],
    BLANK ()
)
&lt;/LI-CODE&gt;
&lt;P&gt;Note that to replace the text above with your actual text&lt;/P&gt;
&lt;P&gt;I created a simple sample to illustrate this.&lt;/P&gt;
&lt;P&gt;Sample:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Use the slicer to filter out null values.&lt;/P&gt;
&lt;P&gt;Result:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Please refer to the attachment below for details&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is this the result you want? Hope this is useful to you&lt;/P&gt;
&lt;P&gt;Please feel free to let me know If you have further questions&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Community Support Team _ Zeon Zheng&lt;BR /&gt;If this post&amp;nbsp;&lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Apr 2021 04:16:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Flitering/m-p/1815673#M705862</guid>
      <dc:creator>v-angzheng-msft</dc:creator>
      <dc:date>2021-04-30T04:16:08Z</dc:date>
    </item>
    <item>
      <title>Re: Flitering</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Flitering/m-p/1825152#M708244</link>
      <description>&lt;P&gt;I want to know if its possible to overwrite the denominator when using average in Power BI. what I mean is in the table listed below I want the average of the 8 process but I want to divide by 9 instead of 8. is that possible&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;img /&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 05 May 2021 14:38:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Flitering/m-p/1825152#M708244</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-05-05T14:38:04Z</dc:date>
    </item>
    <item>
      <title>Re: Flitering</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Flitering/m-p/1825974#M708449</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It may not be easy to get the desired result using the average function, but other functions can be used to achieve the purpose, such as&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;average =DIVIDE ( SUM ( 'table'[Score] ), 9 )&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;OR:&amp;nbsp; average =DIVIDE ( SUM ( 'table'[Score] ), COUNTROWS ( 'table' ) + 1 ).&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is this the result you want? Hope this is useful to you&lt;/P&gt;
&lt;P&gt;Please feel free to let me know If you have further questions&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Community Support Team _ Zeon Zheng&lt;BR /&gt;If this post&amp;nbsp;&lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept it as the solution&lt;/EM&gt;&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Thu, 06 May 2021 01:30:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Flitering/m-p/1825974#M708449</guid>
      <dc:creator>v-angzheng-msft</dc:creator>
      <dc:date>2021-05-06T01:30:12Z</dc:date>
    </item>
    <item>
      <title>Re: Flitering</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Flitering/m-p/1851483#M715062</link>
      <description>&lt;P&gt;HI&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I tried both and they didnt work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks&amp;nbsp;&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;</description>
      <pubDate>Wed, 19 May 2021 13:15:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Flitering/m-p/1851483#M715062</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2021-05-19T13:15:23Z</dc:date>
    </item>
  </channel>
</rss>

