<?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 list all members of a family (or group) filtering by any of its members in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-list-all-members-of-a-family-or-group-filtering-by-any-of/m-p/4748592#M181839</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="291628" data-lia-user-login="Jihwan_Kim" class="lia-mention lia-mention-user"&gt;Jihwan_Kim&lt;/a&gt;, how would you change this if a Name can belong to multiple FamilyID?&lt;/P&gt;</description>
    <pubDate>Mon, 30 Jun 2025 13:50:09 GMT</pubDate>
    <dc:creator>TRADER083</dc:creator>
    <dc:date>2025-06-30T13:50:09Z</dc:date>
    <item>
      <title>How to list all members of a family (or group) filtering by any of its members</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-list-all-members-of-a-family-or-group-filtering-by-any-of/m-p/2612524#M75816</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the following data, where the member of the Families A and B are listed.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to show the members of the a family when I select a one of its members filtering by PersonId field.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;For Example:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;If I select the PersonId 1728364.&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to show the members of the A family as it's shown in the following image:&lt;/P&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think this could be solved with dax, but I don't how, so I hope you could help me.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Jun 2022 16:17:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-list-all-members-of-a-family-or-group-filtering-by-any-of/m-p/2612524#M75816</guid>
      <dc:creator>nathalylopez</dc:creator>
      <dc:date>2022-06-30T16:17:12Z</dc:date>
    </item>
    <item>
      <title>Re: How to list all members of a family (or group) filtering by any of its members</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-list-all-members-of-a-family-or-group-filtering-by-any-of/m-p/2612644#M75819</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;One of ways to solve this is to create disconnected slicer table like below.&lt;/P&gt;
&lt;P&gt;Please check the below picture and the attached pbix file.&lt;/P&gt;
&lt;P&gt;It is for creating a measure.&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;LI-CODE lang="markup"&gt;PersonID Measure: =
VAR _selectedfamily =
    SUMMARIZE (
        FILTER ( ALL ( Data ), Data[PersonID] IN VALUES ( Slicer[PersonID] ) ),
        Data[FamilyID]
    )
RETURN
    IF (
        HASONEVALUE ( Data[Name] ),
        CALCULATE ( MAX ( Data[PersonID] ), Data[FamilyID] = _selectedfamily )
    )
&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 30 Jun 2022 17:34:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-list-all-members-of-a-family-or-group-filtering-by-any-of/m-p/2612644#M75819</guid>
      <dc:creator>Jihwan_Kim</dc:creator>
      <dc:date>2022-06-30T17:34:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to list all members of a family (or group) filtering by any of its members</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-list-all-members-of-a-family-or-group-filtering-by-any-of/m-p/2613290#M75851</link>
      <description>&lt;P&gt;Jihwan_Kim, thanks a lot for your help.&lt;/P&gt;</description>
      <pubDate>Fri, 01 Jul 2022 04:54:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-list-all-members-of-a-family-or-group-filtering-by-any-of/m-p/2613290#M75851</guid>
      <dc:creator>nathalylopez</dc:creator>
      <dc:date>2022-07-01T04:54:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to list all members of a family (or group) filtering by any of its members</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-list-all-members-of-a-family-or-group-filtering-by-any-of/m-p/4748592#M181839</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="291628" data-lia-user-login="Jihwan_Kim" class="lia-mention lia-mention-user"&gt;Jihwan_Kim&lt;/a&gt;, how would you change this if a Name can belong to multiple FamilyID?&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jun 2025 13:50:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-list-all-members-of-a-family-or-group-filtering-by-any-of/m-p/4748592#M181839</guid>
      <dc:creator>TRADER083</dc:creator>
      <dc:date>2025-06-30T13:50:09Z</dc:date>
    </item>
  </channel>
</rss>

