<?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: How to use a slicer from Table on the Many-to-one side of Dimension Table in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-a-slicer-from-Table-on-the-Many-to-one-side-of/m-p/3207044#M116833</link>
    <description>&lt;P&gt;Create dimension tables for skills, practices and projects and link them to the fact tables&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Add a filter to the table visual so that [Total employees] is not blank and create a couple of measures like&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Show practice in slicer = 
VAR VisibleEmployees = TREATAS( VALUES( 'Employee Skills'[Emp_ID]), 'Employees'[Emp_ID])
VAR VisiblePractices = CALCULATETABLE(
	VALUES( 'FactTable'[Practice]),
	VisibleEmployees
)
RETURN IF( SELECTEDVALUE( 'Practices'[Practice]) IN VisiblePractices, 1)

Show project in slicer = 
VAR VisibleEmployees = TREATAS( VALUES( 'Employee Skills'[Emp_ID]), 'Employees'[Emp_ID])
VAR VisibleProjects = CALCULATETABLE(
	VALUES( 'FactTable'[Project]),
	VisibleEmployees
)
RETURN IF( SELECTEDVALUE( 'Projects'[Project]) IN VisibleProjects, 1)&lt;/LI-CODE&gt;
&lt;P&gt;and add these as visual filters to the slicers, to only show when the value is 1.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 26 Apr 2023 11:11:05 GMT</pubDate>
    <dc:creator>johnt75</dc:creator>
    <dc:date>2023-04-26T11:11:05Z</dc:date>
    <item>
      <title>How to use a slicer from Table on the Many-to-one side of Dimension Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-a-slicer-from-Table-on-the-Many-to-one-side-of/m-p/3206890#M116822</link>
      <description>&lt;P&gt;I have three Tables in my Data Model,&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Fact Table: It contains all the records, along with two columns called "Project" and "Practice"&lt;/LI&gt;&lt;LI&gt;Employee Table: It contains records of all the employees.&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;Employee Skills Table: It contains skills against each employee (each employee can have multiple skills)&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;I have purposely kept Employee Skills Table and Employees Table separately because if I merge them, I will have to create a&amp;nbsp;&lt;STRONG&gt;many to many&amp;nbsp;&lt;/STRONG&gt;relation between Fact Table and Employee table (which I believe would be bad?)&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My data model currently looks like this,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My problem is in my report, I need to provide the user with two slicers of&amp;nbsp;&lt;STRONG&gt;Project&amp;nbsp;&lt;/STRONG&gt;and&amp;nbsp;&lt;STRONG&gt;Practice&amp;nbsp;&lt;/STRONG&gt;(both these slicers are coming from Fact Table).&amp;nbsp;&lt;/P&gt;&lt;P&gt;Along with that, I want to provide a&amp;nbsp;&lt;STRONG&gt;slicer for Skill&amp;nbsp;&lt;/STRONG&gt;(that will come from the Employee Skills Table) and make it interact with the other visuals in the Report.&amp;nbsp;&lt;/P&gt;&lt;P&gt;My report looks like this,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, if I select Mobile Development from Skills, it should show only those employees record which have the Mobile Development Skill, but it doesn't do it as of now (due to the relation and filter propagation)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am able to get the Bar Chart and the Total Employees visuals working using the following DAX for Total Employees (with the help of this amazing community)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Total Employees = 
CALCULATE(
    DISTINCTCOUNT(FactTable[Emp_ID]),
    TREATAS(
        DISTINCT('Employee Skills'[Emp_ID]),
        Employees[Emp_ID]
    )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But, this DAX only works for Employees Count.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want the following two things,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&amp;nbsp;I want the other visuals to also interact when a value is selected from Skills Slicer. That is, Projects count, Practices count as well as the Table showing detail of the employees should also get filtered when a skill is selected, based upon the selection of user.&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;I want the slicers of Practice and Project to interact with the Skills Slicer as well. That is, if a skill is selected, then it should only show those practices and projects in the slicer which correspond to the employees of that Practice/Project.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;How can I achieve these two things without possibly changing the direction of Relation to Bidrectional?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anyone help out in this? Thank you.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT size="5"&gt;If anyone would like to download the Power BI File, you may do so from here:&amp;nbsp;&lt;A href="https://drive.google.com/file/d/1fyImZVMsTLGllUztRgXwjX3Zs6IOLHV9/view?usp=sharing" target="_blank" rel="noopener"&gt;https://drive.google.com/file/d/1fyImZVMsTLGllUztRgXwjX3Zs6IOLHV9/view?usp=sharing&lt;/A&gt;&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;If anyone is interested in looking at the dataset,&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT size="3"&gt;This is the&amp;nbsp;&lt;STRONG&gt;Fact Table Data,&amp;nbsp;&lt;/STRONG&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Emp_ID&lt;/TD&gt;&lt;TD&gt;Project&lt;/TD&gt;&lt;TD&gt;Practice&lt;/TD&gt;&lt;TD&gt;Allocation&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;21911&lt;/TD&gt;&lt;TD&gt;115&lt;/TD&gt;&lt;TD&gt;Java&lt;/TD&gt;&lt;TD&gt;104.35%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;21911&lt;/TD&gt;&lt;TD&gt;633&lt;/TD&gt;&lt;TD&gt;Java&lt;/TD&gt;&lt;TD&gt;100.00%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;29000&lt;/TD&gt;&lt;TD&gt;525&lt;/TD&gt;&lt;TD&gt;Mobile&lt;/TD&gt;&lt;TD&gt;15.65%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;21853&lt;/TD&gt;&lt;TD&gt;525&lt;/TD&gt;&lt;TD&gt;AI&lt;/TD&gt;&lt;TD&gt;82.61%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;29000&lt;/TD&gt;&lt;TD&gt;525&lt;/TD&gt;&lt;TD&gt;Mobile&lt;/TD&gt;&lt;TD&gt;88.70%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;29501&lt;/TD&gt;&lt;TD&gt;Dummy&lt;/TD&gt;&lt;TD&gt;AI&lt;/TD&gt;&lt;TD&gt;100.54%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;28545&lt;/TD&gt;&lt;TD&gt;2021&lt;/TD&gt;&lt;TD&gt;Mobile&lt;/TD&gt;&lt;TD&gt;104.35%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;23374&lt;/TD&gt;&lt;TD&gt;T187&lt;/TD&gt;&lt;TD&gt;Web&lt;/TD&gt;&lt;TD&gt;100.00%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;29508&lt;/TD&gt;&lt;TD&gt;T041&lt;/TD&gt;&lt;TD&gt;Web&lt;/TD&gt;&lt;TD&gt;100.00%&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;19105&lt;/TD&gt;&lt;TD&gt;T096&lt;/TD&gt;&lt;TD&gt;Web&lt;/TD&gt;&lt;TD&gt;100.00%&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the&amp;nbsp;&lt;STRONG&gt;Employee Table Data,&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Emp_ID&lt;/TD&gt;&lt;TD&gt;Resource_Name&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;21911&lt;/TD&gt;&lt;TD&gt;Novak Jah&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;29000&lt;/TD&gt;&lt;TD&gt;Ali Ahmed Mughal&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;21853&lt;/TD&gt;&lt;TD&gt;John Smith&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;29501&lt;/TD&gt;&lt;TD&gt;John Morrison&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;28545&lt;/TD&gt;&lt;TD&gt;Ali Moeen&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;23374&lt;/TD&gt;&lt;TD&gt;John Ali&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;29508&lt;/TD&gt;&lt;TD&gt;Henry&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;19105&lt;/TD&gt;&lt;TD&gt;Joe Thomas&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;TD&gt;&amp;nbsp;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the&amp;nbsp;&lt;STRONG&gt;Employee Skills Table Data,&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE border="0" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Emp_ID&lt;/TD&gt;&lt;TD&gt;Skill&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;21911&lt;/TD&gt;&lt;TD&gt;Python&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;21911&lt;/TD&gt;&lt;TD&gt;Java&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;21911&lt;/TD&gt;&lt;TD&gt;Machine Learning&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;29000&lt;/TD&gt;&lt;TD&gt;Java&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;21853&lt;/TD&gt;&lt;TD&gt;Java&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;21853&lt;/TD&gt;&lt;TD&gt;NLTK&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;29000&lt;/TD&gt;&lt;TD&gt;Java&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;29000&lt;/TD&gt;&lt;TD&gt;Python&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;29501&lt;/TD&gt;&lt;TD&gt;Python&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;29501&lt;/TD&gt;&lt;TD&gt;NLP&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;28545&lt;/TD&gt;&lt;TD&gt;Tableau&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;28545&lt;/TD&gt;&lt;TD&gt;Power BI&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;23374&lt;/TD&gt;&lt;TD&gt;NLTK&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;29508&lt;/TD&gt;&lt;TD&gt;Python&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;19105&lt;/TD&gt;&lt;TD&gt;Javascript&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;19105&lt;/TD&gt;&lt;TD&gt;Python&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;19105&lt;/TD&gt;&lt;TD&gt;Mobile Development&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description>
      <pubDate>Wed, 26 Apr 2023 09:34:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-a-slicer-from-Table-on-the-Many-to-one-side-of/m-p/3206890#M116822</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-26T09:34:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a slicer from Table on the Many-to-one side of Dimension Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-a-slicer-from-Table-on-the-Many-to-one-side-of/m-p/3207044#M116833</link>
      <description>&lt;P&gt;Create dimension tables for skills, practices and projects and link them to the fact tables&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Add a filter to the table visual so that [Total employees] is not blank and create a couple of measures like&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Show practice in slicer = 
VAR VisibleEmployees = TREATAS( VALUES( 'Employee Skills'[Emp_ID]), 'Employees'[Emp_ID])
VAR VisiblePractices = CALCULATETABLE(
	VALUES( 'FactTable'[Practice]),
	VisibleEmployees
)
RETURN IF( SELECTEDVALUE( 'Practices'[Practice]) IN VisiblePractices, 1)

Show project in slicer = 
VAR VisibleEmployees = TREATAS( VALUES( 'Employee Skills'[Emp_ID]), 'Employees'[Emp_ID])
VAR VisibleProjects = CALCULATETABLE(
	VALUES( 'FactTable'[Project]),
	VisibleEmployees
)
RETURN IF( SELECTEDVALUE( 'Projects'[Project]) IN VisibleProjects, 1)&lt;/LI-CODE&gt;
&lt;P&gt;and add these as visual filters to the slicers, to only show when the value is 1.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Apr 2023 11:11:05 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-a-slicer-from-Table-on-the-Many-to-one-side-of/m-p/3207044#M116833</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-04-26T11:11:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a slicer from Table on the Many-to-one side of Dimension Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-a-slicer-from-Table-on-the-Many-to-one-side-of/m-p/3207661#M116885</link>
      <description>&lt;P&gt;That's an amazing solution! Thank you.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just one thing, this doesn't seem to work with the&amp;nbsp;&lt;STRONG&gt;Total Projects&amp;nbsp;&lt;/STRONG&gt;and the&amp;nbsp;&lt;STRONG&gt;Total Practices&amp;nbsp;&lt;/STRONG&gt;KPI Cards &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am not able to put the "Total Employees" measure in the visual level filter for them. Is there any possible way to get those numbers to work with the Skills as well?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Apr 2023 16:15:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-a-slicer-from-Table-on-the-Many-to-one-side-of/m-p/3207661#M116885</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-26T16:15:21Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a slicer from Table on the Many-to-one side of Dimension Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-a-slicer-from-Table-on-the-Many-to-one-side-of/m-p/3208794#M116955</link>
      <description>&lt;P&gt;You could use the same principle as in the measures for the visual filters,&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Total Projects = 
VAR VisibleEmployees = TREATAS( VALUES( 'Employee Skills'[Emp_ID]), 'Employees'[Emp_ID])
VAR VisibleProjects = CALCULATETABLE(
	VALUES( 'FactTable'[Project]),
	VisibleEmployees
)
RETURN COUNTROWS( VisibleProjects )

Total Practices = 
VAR VisibleEmployees = TREATAS( VALUES( 'Employee Skills'[Emp_ID]), 'Employees'[Emp_ID])
VAR VisiblePractices = CALCULATETABLE(
	VALUES( 'FactTable'[Practice]),
	VisibleEmployees
)
RETURN COUNTROWS( VisiblePractices )&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 27 Apr 2023 08:20:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-a-slicer-from-Table-on-the-Many-to-one-side-of/m-p/3208794#M116955</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-04-27T08:20:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a slicer from Table on the Many-to-one side of Dimension Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-a-slicer-from-Table-on-the-Many-to-one-side-of/m-p/3208822#M116959</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="240987" data-lia-user-login="johnt75" class="lia-mention lia-mention-user"&gt;johnt75&lt;/a&gt;&amp;nbsp; That worked! Thank you so much!&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;I just need to know one more thing.&amp;nbsp;&lt;/P&gt;&lt;P&gt;All these DAX Measures look quite difficult to write. Is it really the best practice to write such long/complicated DAX Measures rather than turning on the Bidrectional filtering between Employee and Employee Skills Table? (which I believe should also fix the issue)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, not to mention, that in a larger dataset, all these DAX Measures will also be quite slower to execute. Can you please provide any guidance regarding this? I would be very thankful to you!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Apr 2023 08:31:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-a-slicer-from-Table-on-the-Many-to-one-side-of/m-p/3208822#M116959</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-27T08:31:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a slicer from Table on the Many-to-one side of Dimension Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-a-slicer-from-Table-on-the-Many-to-one-side-of/m-p/3208848#M116961</link>
      <description>&lt;P&gt;Bi-directional filtering is probably an option in this case but I try to avoid it wherever possible as it introduces another level of complexity that isn't really necessary. I find moving filters around by using TREATAS easier to understand, and it only happens when I want it to, not all the time. The same effect could achieved by manually turning the relationship bi-directional, using CROSSFILTER, only in those measures where you wanted it.&lt;/P&gt;
&lt;P&gt;In terms of performance, I think it would depend on a number of factors. Each model would be different, and you would need to do tests using both methods to see which performed best.&lt;/P&gt;</description>
      <pubDate>Thu, 27 Apr 2023 08:44:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-a-slicer-from-Table-on-the-Many-to-one-side-of/m-p/3208848#M116961</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2023-04-27T08:44:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to use a slicer from Table on the Many-to-one side of Dimension Table</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-a-slicer-from-Table-on-the-Many-to-one-side-of/m-p/3208897#M116966</link>
      <description>&lt;P&gt;Yes, but I can't really use CrossFilter for a Slicer from what I know, which is why I had a problem using that in this case.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for the help and the clarity however! I need to understand TREATAS better and get used to it better. I greatly appreciate you taking out time and helping out, thank you!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Apr 2023 09:21:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-use-a-slicer-from-Table-on-the-Many-to-one-side-of/m-p/3208897#M116966</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-04-27T09:21:02Z</dc:date>
    </item>
  </channel>
</rss>

