<?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 Different slicers for different columns in one product matrix in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Different-slicers-for-different-columns-in-one-product-matrix/m-p/4376034#M173740</link>
    <description>&lt;P&gt;Hi , I'm looking for help regarding slicers to a matrix. I have 5 slicers which I want to show different periods in each column but I'm running into issues. 1. It will only show in the figures if I select the first slicer selection in all 5 slicers. 2. When I try and select a different period from the first slicer the matrix just goes blank.&lt;/P&gt;&lt;P&gt;I've created 5 tables- one for each column and created relationships with each table to the data table.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Next I've set up a measure for the&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;different slicers.&lt;/P&gt;&lt;P&gt;Next I have set up another measure for the column&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt; But it doesn't seem to work. As previously mentioned it will only show the same information if all slicers are selected are the same&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt; Any help on this would be very much appreciated&amp;nbsp; please and thank you&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 22 Jan 2025 15:36:00 GMT</pubDate>
    <dc:creator>derekjdmurphy88</dc:creator>
    <dc:date>2025-01-22T15:36:00Z</dc:date>
    <item>
      <title>Different slicers for different columns in one product matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Different-slicers-for-different-columns-in-one-product-matrix/m-p/4376034#M173740</link>
      <description>&lt;P&gt;Hi , I'm looking for help regarding slicers to a matrix. I have 5 slicers which I want to show different periods in each column but I'm running into issues. 1. It will only show in the figures if I select the first slicer selection in all 5 slicers. 2. When I try and select a different period from the first slicer the matrix just goes blank.&lt;/P&gt;&lt;P&gt;I've created 5 tables- one for each column and created relationships with each table to the data table.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Next I've set up a measure for the&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;different slicers.&lt;/P&gt;&lt;P&gt;Next I have set up another measure for the column&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt; But it doesn't seem to work. As previously mentioned it will only show the same information if all slicers are selected are the same&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt; Any help on this would be very much appreciated&amp;nbsp; please and thank you&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Jan 2025 15:36:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Different-slicers-for-different-columns-in-one-product-matrix/m-p/4376034#M173740</guid>
      <dc:creator>derekjdmurphy88</dc:creator>
      <dc:date>2025-01-22T15:36:00Z</dc:date>
    </item>
    <item>
      <title>Re: Different slicers for different columns in one product matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Different-slicers-for-different-columns-in-one-product-matrix/m-p/4377085#M173786</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="917163" data-lia-user-login="derekjdmurphy88" class="lia-mention lia-mention-user"&gt;derekjdmurphy88&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;Based on this problem of yours, it may be caused by the fact that the slicers of multiple dates are not uniformly scheduled, and power bi is not able to recognize the correct interval for each slicer, but of course there is a solution for this, and the following is the solution that I have provided for you:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Sales for Slicer 1 = 
CALCULATE(
    [Total Sales],
    FILTER(
        'Sales Table',
        'Sales Table'[Date] IN ALLSELECTED('Table 1'[Date])
    )
)&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;Sales for Slicer 2 = 
CALCULATE(
    [Total Sales],
    FILTER(
        'Sales Table',
        'Sales Table'[Date] IN ALLSELECTED('Table 2'[Date])
    )
)&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;We let each of our filters only for their own table for the date of the filter, so as not to affect the other table filters, so as to achieve the effect you need, I hope this will be helpful to you!&lt;BR /&gt;If you have any further questions you can check out my pbix file, I would be honored if I could solve your problem!&lt;/P&gt;
&lt;P&gt;Hope it helps!&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Community Support Team_ Tom Shen&lt;/P&gt;
&lt;P&gt;If this post helps then please consider&amp;nbsp;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Jan 2025 06:49:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Different-slicers-for-different-columns-in-one-product-matrix/m-p/4377085#M173786</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-01-23T06:49:05Z</dc:date>
    </item>
    <item>
      <title>Re: Different slicers for different columns in one product matrix</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Different-slicers-for-different-columns-in-one-product-matrix/m-p/4378646#M173835</link>
      <description>&lt;P&gt;Thanks a million for taking the tim to help me with this query tom really appreciate&amp;nbsp; it.&amp;nbsp; This has been most helpful.&amp;nbsp; Thanks again&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2025 00:23:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Different-slicers-for-different-columns-in-one-product-matrix/m-p/4378646#M173835</guid>
      <dc:creator>derekjdmurphy88</dc:creator>
      <dc:date>2025-01-24T00:23:23Z</dc:date>
    </item>
  </channel>
</rss>

