<?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: Filter Table on Field That is Dependent on Slicer Selection in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Table-on-Field-That-is-Dependent-on-Slicer-Selection/m-p/4147794#M164825</link>
    <description>&lt;P&gt;By "separate" i mean a field that isn't part of the slicer. Essentially i want the slicer selection to filter the table and then based on that selection, i would like the table to be filtered further by only showing data for the true/false field designation&amp;nbsp; i.e. Slicer Course would show FALSE and slicer certification would show TRUE.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 12 Sep 2024 16:42:58 GMT</pubDate>
    <dc:creator>burtfarlander44</dc:creator>
    <dc:date>2024-09-12T16:42:58Z</dc:date>
    <item>
      <title>Filter Table on Field That is Dependent on Slicer Selection</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Table-on-Field-That-is-Dependent-on-Slicer-Selection/m-p/4147684#M164819</link>
      <description>&lt;P&gt;I have a slicer with 2 selections, Course and Certification. I also have a separate field called Archived that is either TRUE or FALSE.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am trying to filter the table on the archived value based on whether Course (FALSE) or Certification (TRUE) is selected in the slicer&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have tried using an IF statement nested with a FILTER statement with no luck.&lt;/P&gt;</description>
      <pubDate>Thu, 12 Sep 2024 15:47:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Table-on-Field-That-is-Dependent-on-Slicer-Selection/m-p/4147684#M164819</guid>
      <dc:creator>burtfarlander44</dc:creator>
      <dc:date>2024-09-12T15:47:04Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Table on Field That is Dependent on Slicer Selection</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Table-on-Field-That-is-Dependent-on-Slicer-Selection/m-p/4147766#M164824</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="805431" data-lia-user-login="burtfarlander44" class="lia-mention lia-mention-user"&gt;burtfarlander44&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;what did you mean "seprate field"? are the slicers come from two dimention that are not related to your fact table?! does your fact table contain two column of which has the values ( true/false and certificate/course)?&lt;/P&gt;</description>
      <pubDate>Thu, 12 Sep 2024 16:26:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Table-on-Field-That-is-Dependent-on-Slicer-Selection/m-p/4147766#M164824</guid>
      <dc:creator>Selva-Salimi</dc:creator>
      <dc:date>2024-09-12T16:26:17Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Table on Field That is Dependent on Slicer Selection</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Table-on-Field-That-is-Dependent-on-Slicer-Selection/m-p/4147794#M164825</link>
      <description>&lt;P&gt;By "separate" i mean a field that isn't part of the slicer. Essentially i want the slicer selection to filter the table and then based on that selection, i would like the table to be filtered further by only showing data for the true/false field designation&amp;nbsp; i.e. Slicer Course would show FALSE and slicer certification would show TRUE.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Sep 2024 16:42:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Table-on-Field-That-is-Dependent-on-Slicer-Selection/m-p/4147794#M164825</guid>
      <dc:creator>burtfarlander44</dc:creator>
      <dc:date>2024-09-12T16:42:58Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Table on Field That is Dependent on Slicer Selection</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Table-on-Field-That-is-Dependent-on-Slicer-Selection/m-p/4147803#M164827</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="805431" data-lia-user-login="burtfarlander44" class="lia-mention lia-mention-user"&gt;burtfarlander44&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;one easy solution is to write a modified column in your table as follows:&lt;/P&gt;&lt;P&gt;if ([archive] = "True" , "Certificate" , if ([archive]="false" , "Course" ))&lt;/P&gt;&lt;P&gt;you also can connect this modified column to your dimension which contains certificate/course or use this column in your calculations.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If this post helps, then I would appreciate a thumbs up&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;and mark it as the solution&amp;nbsp;to help the other members find it more quickly.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Sep 2024 16:52:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Table-on-Field-That-is-Dependent-on-Slicer-Selection/m-p/4147803#M164827</guid>
      <dc:creator>Selva-Salimi</dc:creator>
      <dc:date>2024-09-12T16:52:24Z</dc:date>
    </item>
    <item>
      <title>Re: Filter Table on Field That is Dependent on Slicer Selection</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Table-on-Field-That-is-Dependent-on-Slicer-Selection/m-p/4161813#M165355</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="805431" data-lia-user-login="burtfarlander44" class="lia-mention lia-mention-user"&gt;burtfarlander44&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Has the issue been solved?&lt;BR /&gt;Have there been any updates? Please feel free to ask me if you have any questions!&lt;/P&gt;
&lt;P&gt;If the issue has been resolved, can you share your solution or mark helpful responses as solutions?&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Dengliang Li&lt;/P&gt;</description>
      <pubDate>Fri, 20 Sep 2024 08:48:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Filter-Table-on-Field-That-is-Dependent-on-Slicer-Selection/m-p/4161813#M165355</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-09-20T08:48:13Z</dc:date>
    </item>
  </channel>
</rss>

