<?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: Excluding a visual from page filter in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Excluding-a-visual-from-page-filter/m-p/2859099#M92011</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="39298" data-lia-user-login="AlexisOlson" class="lia-mention lia-mention-user"&gt;AlexisOlson&lt;/a&gt;&amp;nbsp;Thank you.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 24 Oct 2022 12:14:04 GMT</pubDate>
    <dc:creator>Alicia83B</dc:creator>
    <dc:date>2022-10-24T12:14:04Z</dc:date>
    <item>
      <title>Excluding a visual from page filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Excluding-a-visual-from-page-filter/m-p/2855804#M91789</link>
      <description>&lt;P&gt;I have a visual for ranking sellers by closed won opportunities. This visual does not show all closed won opportunities because of the month page filter. This filter cannot be removed because of other visuals on the dashboard utilizing it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Below is my measure for rank closed won opportunities. How can I write this measure to exclude the filters on the page?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Rank Closed Won Opps =&lt;BR /&gt;&amp;nbsp;IF (&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; ISBLANK([Total Closed Won Opps]),&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; BLANK(),&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; RANKX ( ALL ( 'Employees Activity'[Full Name] ), [Total Closed Won Opps] ) &amp;nbsp;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Measure used to calculate Total Closed Won Opps =&lt;BR /&gt;CALCULATE(&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; [ Total Opps Amount],&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp; Opportunities[sales_stage] = "Closed Won")&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Oct 2022 13:53:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Excluding-a-visual-from-page-filter/m-p/2855804#M91789</guid>
      <dc:creator>Alicia83B</dc:creator>
      <dc:date>2022-10-21T13:53:10Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding a visual from page filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Excluding-a-visual-from-page-filter/m-p/2855921#M91796</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="412207" data-lia-user-login="Alicia83B" class="lia-mention lia-mention-user"&gt;Alicia83B&lt;/a&gt; , you can use removefilters or all &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;example&lt;/P&gt;
&lt;P&gt;Rank Closed Won Opps =&lt;BR /&gt;IF (&lt;/P&gt;
&lt;P&gt;ISBLANK([Total Closed Won Opps]),&lt;/P&gt;
&lt;P&gt;BLANK(),&lt;/P&gt;
&lt;P&gt;RANKX ( ALL ( 'Employees Activity'[Full Name] ), calculate([Total Closed Won Opps], all(Table[Column])&amp;nbsp; ) )&lt;/P&gt;</description>
      <pubDate>Fri, 21 Oct 2022 14:47:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Excluding-a-visual-from-page-filter/m-p/2855921#M91796</guid>
      <dc:creator>amitchandak</dc:creator>
      <dc:date>2022-10-21T14:47:10Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding a visual from page filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Excluding-a-visual-from-page-filter/m-p/2856374#M91824</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="148838" data-lia-user-login="amitchandak" class="lia-mention lia-mention-user"&gt;amitchandak&lt;/a&gt;&amp;nbsp; This did not work. I got a red swiggly line as soon as I added everything after the ,&amp;nbsp;&lt;SPAN&gt;all(Table[Column])&amp;nbsp; ) )&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 21 Oct 2022 21:56:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Excluding-a-visual-from-page-filter/m-p/2856374#M91824</guid>
      <dc:creator>Alicia83B</dc:creator>
      <dc:date>2022-10-21T21:56:29Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding a visual from page filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Excluding-a-visual-from-page-filter/m-p/2857657#M91913</link>
      <description>&lt;P&gt;I think he's just missing a final closing parenthesis. Oh, and replace Table[Column] with whatever filtering you want to ignore.&lt;/P&gt;</description>
      <pubDate>Sun, 23 Oct 2022 18:47:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Excluding-a-visual-from-page-filter/m-p/2857657#M91913</guid>
      <dc:creator>AlexisOlson</dc:creator>
      <dc:date>2022-10-23T18:47:06Z</dc:date>
    </item>
    <item>
      <title>Re: Excluding a visual from page filter</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Excluding-a-visual-from-page-filter/m-p/2859099#M92011</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="39298" data-lia-user-login="AlexisOlson" class="lia-mention lia-mention-user"&gt;AlexisOlson&lt;/a&gt;&amp;nbsp;Thank you.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 24 Oct 2022 12:14:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Excluding-a-visual-from-page-filter/m-p/2859099#M92011</guid>
      <dc:creator>Alicia83B</dc:creator>
      <dc:date>2022-10-24T12:14:04Z</dc:date>
    </item>
  </channel>
</rss>

