<?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: Regarding Power Bi filtering Issue in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Regarding-Power-Bi-filtering-Issue/m-p/4671429#M178937</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1254316" data-lia-user-login="PrathamS" class="lia-mention lia-mention-user"&gt;PrathamS&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P class="" data-start="0" data-end="265"&gt;May i ask if your query has been resolved and if the response was helpful. If so, kindly mark it as "Accepted Solution" to assist others with similar queries. If you're still encountering difficulties, please feel free to reach out.&lt;/P&gt;
&lt;P class="" data-start="267" data-end="277"&gt;Thank you.&lt;/P&gt;</description>
    <pubDate>Mon, 28 Apr 2025 15:45:29 GMT</pubDate>
    <dc:creator>v-veshwara-msft</dc:creator>
    <dc:date>2025-04-28T15:45:29Z</dc:date>
    <item>
      <title>Regarding Power Bi filtering Issue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Regarding-Power-Bi-filtering-Issue/m-p/4639101#M177618</link>
      <description>&lt;P&gt;Hello Everyone,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to develope a feature in power Bi such that a user suppose selects a name out of list of name using a slicer(only option to take user input) than use this name to filter out all those rows which has this name. But the issue is that since the slicer is applied the table has only those rows which has the name selected by user. i can use ALL but the problem is it can only be used for calculation or aggregation purposes. How can I filter and show only those values in the visual which are not same as the once selected by the user for example below&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;slicer Researcher&amp;nbsp;&lt;/P&gt;&lt;P&gt;R1&lt;/P&gt;&lt;P&gt;R2&lt;/P&gt;&lt;P&gt;R3&lt;/P&gt;&lt;P&gt;R4&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;user selects R2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;now in the actual table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;actual table&lt;/P&gt;&lt;P&gt;P1,R1,xyz&lt;/P&gt;&lt;P&gt;P2,R1,yui&lt;/P&gt;&lt;P&gt;P3,R2,ert&lt;/P&gt;&lt;P&gt;P4,R2,ewq&lt;/P&gt;&lt;P&gt;P5,R3,qas&lt;/P&gt;&lt;P&gt;P6,R3,lmq&lt;/P&gt;&lt;P&gt;P7,R4,rty&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;in visual based on the user selected value I only want show this filtered value&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;P1,R1,xyz&lt;/P&gt;&lt;P&gt;P2,R1,yui&lt;/P&gt;&lt;P&gt;P5,R3,qas&lt;/P&gt;&lt;P&gt;P6,R3,lmq&lt;/P&gt;&lt;P&gt;P7,R4,rty&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;how can I do this, power apps input I cant use since I dont have access to it. Is there any other way, I tried a lot of dax but its not working&lt;/P&gt;</description>
      <pubDate>Sat, 05 Apr 2025 05:11:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Regarding-Power-Bi-filtering-Issue/m-p/4639101#M177618</guid>
      <dc:creator>PrathamS</dc:creator>
      <dc:date>2025-04-05T05:11:39Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Power Bi filtering Issue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Regarding-Power-Bi-filtering-Issue/m-p/4639355#M177624</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1254316" data-lia-user-login="PrathamS" class="lia-mention lia-mention-user"&gt;PrathamS&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can solve this issue in Power BI by using a disconnected slicer and a DAX measure to filter out the selected researcher. First, create a new table that contains a distinct list of researchers from your main table. This table should not have any relationship with your main data table. You can do this by writing the following DAX code:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;ResearcherList = DISTINCT(SELECTCOLUMNS('YourTable', "Researcher", 'YourTable'[Researcher]))
&lt;/LI-CODE&gt;
&lt;P&gt;Use this new ResearcherList table as the source for your slicer. Because it's disconnected, selecting a value in the slicer won't automatically filter your main table.&lt;/P&gt;
&lt;P&gt;Next, create a DAX measure that checks whether the researcher in each row is different from the one selected in the slicer. If it is different or if nothing is selected, the measure will return 1. Otherwise, it will return 0. Here's the DAX measure:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;ShowRow =
VAR SelectedResearcher = SELECTEDVALUE(ResearcherList[Researcher])
RETURN
    IF(
        'YourTable'[Researcher] &amp;lt;&amp;gt; SelectedResearcher || ISBLANK(SelectedResearcher),
        1,
        0
    )
&lt;/LI-CODE&gt;
&lt;P&gt;Finally, add this ShowRow measure as a visual-level filter to your table visual, and set the filter condition to show only rows where ShowRow equals 1. This approach will allow the user to select a researcher using the slicer, and the table visual will display all rows where the researcher is not the one selected.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;/P&gt;</description>
      <pubDate>Sat, 05 Apr 2025 12:05:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Regarding-Power-Bi-filtering-Issue/m-p/4639355#M177624</guid>
      <dc:creator>DataNinja777</dc:creator>
      <dc:date>2025-04-05T12:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Power Bi filtering Issue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Regarding-Power-Bi-filtering-Issue/m-p/4663149#M178568</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1254316" data-lia-user-login="PrathamS" class="lia-mention lia-mention-user"&gt;PrathamS&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Thank you for engaging with the Microsoft Fabric Community.&lt;/P&gt;
&lt;P&gt;Just following up to check if your query has been resolved and whether the response from &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="608865" data-lia-user-login="DataNinja777" class="lia-mention lia-mention-user"&gt;DataNinja777&lt;/a&gt;&amp;nbsp; &amp;nbsp;helpful. If so, please consider marking the helpful replie as Accepted Solution to assist others with similar queries. If further assistance isneeded, please reach out.&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Tue, 22 Apr 2025 12:10:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Regarding-Power-Bi-filtering-Issue/m-p/4663149#M178568</guid>
      <dc:creator>v-veshwara-msft</dc:creator>
      <dc:date>2025-04-22T12:10:07Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Power Bi filtering Issue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Regarding-Power-Bi-filtering-Issue/m-p/4671429#M178937</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1254316" data-lia-user-login="PrathamS" class="lia-mention lia-mention-user"&gt;PrathamS&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P class="" data-start="0" data-end="265"&gt;May i ask if your query has been resolved and if the response was helpful. If so, kindly mark it as "Accepted Solution" to assist others with similar queries. If you're still encountering difficulties, please feel free to reach out.&lt;/P&gt;
&lt;P class="" data-start="267" data-end="277"&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Apr 2025 15:45:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Regarding-Power-Bi-filtering-Issue/m-p/4671429#M178937</guid>
      <dc:creator>v-veshwara-msft</dc:creator>
      <dc:date>2025-04-28T15:45:29Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Power Bi filtering Issue</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Regarding-Power-Bi-filtering-Issue/m-p/4678910#M179210</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1254316" data-lia-user-login="PrathamS" class="lia-mention lia-mention-user"&gt;PrathamS&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P class="" data-start="82" data-end="262"&gt;We’re following up once more regarding your query. If it has been resolved, please mark the helpful reply as the&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG data-start="195" data-end="216"&gt;Accepted Solution&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;to assist others facing similar challenges.&lt;/P&gt;
&lt;P class="" data-start="264" data-end="334"&gt;If you still need assistance, please let us know.&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Sun, 04 May 2025 14:24:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Regarding-Power-Bi-filtering-Issue/m-p/4678910#M179210</guid>
      <dc:creator>v-veshwara-msft</dc:creator>
      <dc:date>2025-05-04T14:24:12Z</dc:date>
    </item>
  </channel>
</rss>

