<?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: slicers automatically selected based on another slicer selection in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/slicers-automatically-selected-based-on-another-slicer-selection/m-p/4721954#M180857</link>
    <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="578737" data-lia-user-login="bharosha" class="lia-mention lia-mention-user"&gt;bharosha&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Power BI slicers do not natively support automatic cross-filtering between two slicers based on unrelated columns (e.g., selecting a Close Date and having Open Date slicer reflect that). However, there are a few &lt;STRONG&gt;workarounds&lt;/STRONG&gt; depending on the complexity and flexibility you need.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Objectives:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;You want:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;A &lt;STRONG&gt;Close Date slicer&lt;/STRONG&gt; that the user interacts with.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;An &lt;STRONG&gt;Open Date slicer&lt;/STRONG&gt; that is automatically filtered based on the selected Close Date range (e.g., if a Close Date is selected as 2024-06-01, only Open Dates on or before 2024-06-01 should appear in the slicer).&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#008000"&gt;&lt;STRONG&gt;Solution Using a Date Table and DAX&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Step-1: Create a Calendar Table&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Create a separate DateTable:&lt;/P&gt;&lt;PRE&gt;DateTable = CALENDAR(MIN('YourTable'[OpenDate]), MAX('YourTable'[CloseDate]))&lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;STRONG&gt;Step-2: Create Relationships&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;No direct relationship from DateTable to YourTable is needed for slicers.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;But for measures, you might still relate it if needed.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;Step-3: Add Calculated Columns&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Add a column to flag whether a date is eligible for filtering:&lt;/P&gt;&lt;PRE&gt;IsOpenDateValid = 
VAR SelectedCloseDate = MAX('YourTable'[CloseDate])
RETURN 
    IF('DateTable'[Date] &amp;lt;= SelectedCloseDate, 1, 0)&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;But this won’t auto-refresh based on slicer selection because slicers operate before filters/measures.&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#008000"&gt;Workaround with Sync Using a Visual and Measure&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Step-1: Create Measures&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Create a measure to capture selected close date range:&lt;/P&gt;&lt;PRE&gt;SelectedCloseDate = MAX('YourTable'[CloseDate])&lt;/PRE&gt;&lt;P&gt;Then, create a measure to filter the open date:&lt;/P&gt;&lt;PRE&gt;FilterOpenDates = 
IF(
    MAX('YourTable'[OpenDate]) &amp;lt;= [SelectedCloseDate],
    1,
    0
)&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#000000"&gt;Step-2: Add Open Date as a Slicer (Visual-Level Filter)&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Use a slicer visual for OpenDate, and apply a visual-level filter: Show only values where FilterOpenDates = 1.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#008000"&gt;Advanced Option: Field Parameters or Bookmarks&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;If you're using Field Parameters or Bookmarks, you could create alternate views based on Close Date selections. However, this becomes complex and static.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#008000"&gt;&lt;STRONG&gt;Best Practice:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;If you want truly dynamic control between slicers (like cascading filters), consider:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Creating a &lt;STRONG&gt;calculated table&lt;/STRONG&gt; with pre-filtered Open Dates based on Close Date selection.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Or using &lt;STRONG&gt;Power BI Sync Slicers&lt;/STRONG&gt; and visual filters smartly to guide users, even if not fully automatic.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If you found this solution helpful, please consider accepting it and giving it a kudos (Like) it’s greatly appreciated and helps others find the solution more easily.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;&lt;A href="https://www.linkedin.com/in/nasif-azam-9aa2331a0/" target="_blank" rel="noopener nofollow noreferrer"&gt;Nasif Azam&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 05 Jun 2025 19:13:28 GMT</pubDate>
    <dc:creator>Nasif_Azam</dc:creator>
    <dc:date>2025-06-05T19:13:28Z</dc:date>
    <item>
      <title>slicers automatically selected based on another slicer selection</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/slicers-automatically-selected-based-on-another-slicer-selection/m-p/4721944#M180855</link>
      <description>&lt;P&gt;I have a table that has id, open date and close date. I need to be able to select a date on close date filter, depending upon the selection, open date slicer gets automatically selected. Is there a way to do so.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jun 2025 18:51:39 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/slicers-automatically-selected-based-on-another-slicer-selection/m-p/4721944#M180855</guid>
      <dc:creator>bharosha</dc:creator>
      <dc:date>2025-06-05T18:51:39Z</dc:date>
    </item>
    <item>
      <title>Re: slicers automatically selected based on another slicer selection</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/slicers-automatically-selected-based-on-another-slicer-selection/m-p/4721954#M180857</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="578737" data-lia-user-login="bharosha" class="lia-mention lia-mention-user"&gt;bharosha&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Power BI slicers do not natively support automatic cross-filtering between two slicers based on unrelated columns (e.g., selecting a Close Date and having Open Date slicer reflect that). However, there are a few &lt;STRONG&gt;workarounds&lt;/STRONG&gt; depending on the complexity and flexibility you need.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Objectives:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;You want:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;A &lt;STRONG&gt;Close Date slicer&lt;/STRONG&gt; that the user interacts with.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;An &lt;STRONG&gt;Open Date slicer&lt;/STRONG&gt; that is automatically filtered based on the selected Close Date range (e.g., if a Close Date is selected as 2024-06-01, only Open Dates on or before 2024-06-01 should appear in the slicer).&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#008000"&gt;&lt;STRONG&gt;Solution Using a Date Table and DAX&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Step-1: Create a Calendar Table&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Create a separate DateTable:&lt;/P&gt;&lt;PRE&gt;DateTable = CALENDAR(MIN('YourTable'[OpenDate]), MAX('YourTable'[CloseDate]))&lt;/PRE&gt;&lt;P&gt;&lt;FONT color="#000000"&gt;&lt;STRONG&gt;Step-2: Create Relationships&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;No direct relationship from DateTable to YourTable is needed for slicers.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;But for measures, you might still relate it if needed.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;Step-3: Add Calculated Columns&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Add a column to flag whether a date is eligible for filtering:&lt;/P&gt;&lt;PRE&gt;IsOpenDateValid = 
VAR SelectedCloseDate = MAX('YourTable'[CloseDate])
RETURN 
    IF('DateTable'[Date] &amp;lt;= SelectedCloseDate, 1, 0)&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;But this won’t auto-refresh based on slicer selection because slicers operate before filters/measures.&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#008000"&gt;Workaround with Sync Using a Visual and Measure&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Step-1: Create Measures&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Create a measure to capture selected close date range:&lt;/P&gt;&lt;PRE&gt;SelectedCloseDate = MAX('YourTable'[CloseDate])&lt;/PRE&gt;&lt;P&gt;Then, create a measure to filter the open date:&lt;/P&gt;&lt;PRE&gt;FilterOpenDates = 
IF(
    MAX('YourTable'[OpenDate]) &amp;lt;= [SelectedCloseDate],
    1,
    0
)&lt;/PRE&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#000000"&gt;Step-2: Add Open Date as a Slicer (Visual-Level Filter)&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Use a slicer visual for OpenDate, and apply a visual-level filter: Show only values where FilterOpenDates = 1.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#008000"&gt;Advanced Option: Field Parameters or Bookmarks&lt;/FONT&gt;&lt;/STRONG&gt;&lt;BR /&gt;If you're using Field Parameters or Bookmarks, you could create alternate views based on Close Date selections. However, this becomes complex and static.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#008000"&gt;&lt;STRONG&gt;Best Practice:&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;If you want truly dynamic control between slicers (like cascading filters), consider:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Creating a &lt;STRONG&gt;calculated table&lt;/STRONG&gt; with pre-filtered Open Dates based on Close Date selection.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Or using &lt;STRONG&gt;Power BI Sync Slicers&lt;/STRONG&gt; and visual filters smartly to guide users, even if not fully automatic.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If you found this solution helpful, please consider accepting it and giving it a kudos (Like) it’s greatly appreciated and helps others find the solution more easily.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;&lt;A href="https://www.linkedin.com/in/nasif-azam-9aa2331a0/" target="_blank" rel="noopener nofollow noreferrer"&gt;Nasif Azam&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jun 2025 19:13:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/slicers-automatically-selected-based-on-another-slicer-selection/m-p/4721954#M180857</guid>
      <dc:creator>Nasif_Azam</dc:creator>
      <dc:date>2025-06-05T19:13:28Z</dc:date>
    </item>
    <item>
      <title>Re: slicers automatically selected based on another slicer selection</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/slicers-automatically-selected-based-on-another-slicer-selection/m-p/4721958#M180858</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="871356" data-lia-user-login="Nasif_Azam" class="lia-mention lia-mention-user"&gt;Nasif_Azam&lt;/a&gt;&amp;nbsp;, I want to have open date slicers to be selected depending upon the values selected in close date. For an example, If I set close date year 2024- 2025, then I would open date year filter to automatically select all the years less than or equal to (min close date year), which is 2024 in this case.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jun 2025 19:25:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/slicers-automatically-selected-based-on-another-slicer-selection/m-p/4721958#M180858</guid>
      <dc:creator>bharosha</dc:creator>
      <dc:date>2025-06-05T19:25:21Z</dc:date>
    </item>
    <item>
      <title>Re: slicers automatically selected based on another slicer selection</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/slicers-automatically-selected-based-on-another-slicer-selection/m-p/4721988#M180859</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Thank you for the clarification from her feedback. Here’s how you can automatically filter the Open Date slicer to only show years less than or equal to the minimum selected Close Date year such as showing &amp;lt;= 2024 if the Close Date selection is 2024–2025.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Goal Recap&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;Close Date Slicer: User selects one or multiple years (e.g., 2024–2025).&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Open Date Slicer: Should automatically filter to show years ≤ minimum selected Close Date year (i.e., 2024).&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;Power BI doesn’t support automatic slicer-to-slicer filtering like this natively, but here’s a dynamic and usable workaround using DAX and visuals.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Step 1: Create a Calendar Table&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;You’ll need a date table with a year column:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Calendar = CALENDAR(DATE(2000,1,1), DATE(2030,12,31))&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Then add a Year column:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Year = YEAR('Calendar'[Date])&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Step 2: Create Relationships&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;Do not connect Calendar to both Open Date and Close Date directly.&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Instead, keep Open and Close date columns in your main fact table, say FactTable.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;Step 3: Create a Measure to Capture Min&lt;/STRONG&gt; &lt;STRONG&gt;Close Date Year&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;MinCloseYear =&lt;SPAN class=""&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;CALCULATE(&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;MIN(YEAR('FactTable'[CloseDate])),&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;ALLSELECTED('FactTable'[CloseDate])&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Step 4: Create a Filter Measure for Open Date Year&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;This measure will return 1 if the Open Date Year is ≤ Min Close Year:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;ShowOpenYear =&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;IF(&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;'Calendar'[Year] &amp;lt;= [MinCloseYear],&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;1,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class=""&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;0&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Step 5: Use Calendar[Year] as the Open Date Slicer&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;Add a slicer using Calendar[Year].&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Apply a visual-level filter on that slicer:&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/LI&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;Where ShowOpenYear = 1.&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;This will ensure the Open Date Year slicer dynamically adjusts based on the Close Date filter.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;Limitation&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The Open Date slicer won’t have its values auto-selected (checkbox ticked), but it will only show valid options, which guides the user properly.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If you need checkboxes to be auto-ticked, that’s not currently supported in Power BI without using tricks like Bookmarks + DAX + Selection panes, which are harder to maintain.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If you found this solution helpful, please consider accepting it and giving it a kudos (Like) it’s greatly appreciated and helps others find the solution more easily.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;&lt;A href="https://www.linkedin.com/in/nasif-azam-9aa2331a0/" target="_blank" rel="noopener nofollow noreferrer"&gt;Nasif Azam&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 05 Jun 2025 19:44:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/slicers-automatically-selected-based-on-another-slicer-selection/m-p/4721988#M180859</guid>
      <dc:creator>Nasif_Azam</dc:creator>
      <dc:date>2025-06-05T19:44:49Z</dc:date>
    </item>
    <item>
      <title>Re: slicers automatically selected based on another slicer selection</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/slicers-automatically-selected-based-on-another-slicer-selection/m-p/4722158#M180867</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/578737" target="_self"&gt;&lt;SPAN class=""&gt;bharosha&lt;/SPAN&gt;&lt;/A&gt;,&lt;BR /&gt;&lt;BR /&gt;As per my knowledge,&amp;nbsp;&lt;SPAN&gt;Power BI doesn’t support automatic slicer syncing, but we can simulate it using below approach:&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;A shared DateTable&lt;BR /&gt;Dual relationships (active/inactive)&lt;BR /&gt;DAX measures with USERELATIONSHIP&lt;BR /&gt;Visual-level filters&lt;BR /&gt;This method keeps your dashboard dynamic and responsive to user selections.&lt;BR /&gt;&lt;BR /&gt;I am attaching pbix file for your reference, please check it.&lt;BR /&gt;&lt;A href="https://cloudbiexpert-my.sharepoint.com/:u:/p/maruthi/Eczxv__mG0lPtpk9-UljhKAB0arTDroF-qMrZ3GY0JPxkA?e=0tgMyb" target="_blank" rel="noopener"&gt;slicers automatically selected based on another slicer selection.pbix&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Hope the above pbix solution may help you.&lt;/P&gt;&lt;P&gt;Please let me know if you have further questions.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;If this reply helped solve your problem, please consider clicking "Accept as Solution" so others can benefit too.&amp;nbsp;And if you found it useful, a quick "Kudos" is always appreciated, thanks!&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards,&amp;nbsp;&lt;/P&gt;&lt;P&gt;Maruthi&amp;nbsp;&lt;/P&gt;&lt;P&gt;LinkedIn -&amp;nbsp;&lt;A href="http://www.linkedin.com/in/maruthi-siva-prasad/" target="_blank" rel="nofollow noopener noreferrer"&gt;http://www.linkedin.com/in/maruthi-siva-prasad/&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;X&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -&amp;nbsp;&amp;nbsp;&lt;A href="https://x.com/maruthisp" target="_blank" rel="nofollow noopener noreferrer"&gt;Maruthi Siva Prasad - (@MaruthiSP) / X&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jun 2025 01:22:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/slicers-automatically-selected-based-on-another-slicer-selection/m-p/4722158#M180867</guid>
      <dc:creator>maruthisp</dc:creator>
      <dc:date>2025-06-06T01:22:21Z</dc:date>
    </item>
    <item>
      <title>Re: slicers automatically selected based on another slicer selection</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/slicers-automatically-selected-based-on-another-slicer-selection/m-p/4723253#M180913</link>
      <description>&lt;P&gt;Thank you for your help. Both of these options do not help me with pre-selection. I found preselection slicer that I used and solve this issue.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 06 Jun 2025 14:00:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/slicers-automatically-selected-based-on-another-slicer-selection/m-p/4723253#M180913</guid>
      <dc:creator>bharosha</dc:creator>
      <dc:date>2025-06-06T14:00:44Z</dc:date>
    </item>
  </channel>
</rss>

