<?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 I have two tables which have the same id column. I need to add a slicer in to filter, How? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-have-two-tables-which-have-the-same-id-column-I-need-to-add-a/m-p/3845654#M150303</link>
    <description>&lt;P&gt;I have two tables which have the same id column.&lt;/P&gt;&lt;P&gt;I need to add a slicer to drill down on sales per salesperson.&lt;/P&gt;&lt;P&gt;I do not know where to start, and what my dax formula should ook like.&lt;/P&gt;&lt;P&gt;In sql. it would be an inner join I suppose. How to handle this problem from the start? And what would the syntax look like?&lt;/P&gt;</description>
    <pubDate>Wed, 17 Apr 2024 12:45:18 GMT</pubDate>
    <dc:creator>PowerNewbee</dc:creator>
    <dc:date>2024-04-17T12:45:18Z</dc:date>
    <item>
      <title>I have two tables which have the same id column. I need to add a slicer in to filter, How?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-have-two-tables-which-have-the-same-id-column-I-need-to-add-a/m-p/3845654#M150303</link>
      <description>&lt;P&gt;I have two tables which have the same id column.&lt;/P&gt;&lt;P&gt;I need to add a slicer to drill down on sales per salesperson.&lt;/P&gt;&lt;P&gt;I do not know where to start, and what my dax formula should ook like.&lt;/P&gt;&lt;P&gt;In sql. it would be an inner join I suppose. How to handle this problem from the start? And what would the syntax look like?&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2024 12:45:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-have-two-tables-which-have-the-same-id-column-I-need-to-add-a/m-p/3845654#M150303</guid>
      <dc:creator>PowerNewbee</dc:creator>
      <dc:date>2024-04-17T12:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: I have two tables which have the same id column. I need to add a slicer in to filter, How?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-have-two-tables-which-have-the-same-id-column-I-need-to-add-a/m-p/3846305#M150328</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="726573" data-lia-user-login="PowerNewbee" class="lia-mention lia-mention-user"&gt;PowerNewbee&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;you can join tab;e based on ID column to acive this you can follow instruction in this article:&amp;nbsp;&lt;A href="https://www.c-sharpcorner.com/article/merge-two-tables-in-power-bi/" target="_blank" rel="noopener"&gt;https://www.c-sharpcorner.com/article/merge-two-tables-in-power-bi/&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Drag ID from one of the table to another one the replation will be establised and you are done&amp;nbsp;&lt;BR /&gt;then ho dashboard, depending on reuiqrement you can create view say add sales person in slcier and in table add sales you view is ready&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you still have confusion, please sample data here that might help to look into problem statment more clearity&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Did I answer your question? Mark my post as a solution! Appreciate your Kudos!!&lt;BR /&gt;Check for more intersing solution here: &lt;A class="" href="http://www.youtube.com/@Howtosolveprobem" target="_blank" rel="noopener nofollow noreferrer"&gt;www.youtube.com/@Howtosolveprobem&lt;/A&gt;&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;</description>
      <pubDate>Sat, 22 Jun 2024 05:50:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-have-two-tables-which-have-the-same-id-column-I-need-to-add-a/m-p/3846305#M150328</guid>
      <dc:creator>qqqqqwwwweeerrr</dc:creator>
      <dc:date>2024-06-22T05:50:13Z</dc:date>
    </item>
    <item>
      <title>Re: I have two tables which have the same id column. I need to add a slicer in to filter, How?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-have-two-tables-which-have-the-same-id-column-I-need-to-add-a/m-p/3861507#M150851</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="726573" data-lia-user-login="PowerNewbee" class="lia-mention lia-mention-user"&gt;PowerNewbee&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;According to your description, you can establish the relationship between the two tables based on the ID, and then create the following MEASURE to get the sales corresponding to the salesman by filtering.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;result_ = 
CALCULATE (
    SUM ( Table_[Sold] ),
    FILTER ( 'Table', 'Table'[Saler] = SELECTEDVALUE ( 'Table'[Saler] ) )
)
&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;BR /&gt;Adamk Kong&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider&lt;EM&gt;&lt;STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;to help the other members find it more quickly.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 23 Apr 2024 07:58:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/I-have-two-tables-which-have-the-same-id-column-I-need-to-add-a/m-p/3861507#M150851</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-04-23T07:58:35Z</dc:date>
    </item>
  </channel>
</rss>

