<?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: List of values in a column in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/List-of-values-in-a-column/m-p/2778025#M86810</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="438980" data-lia-user-login="Kapcer" class="lia-mention lia-mention-user"&gt;Kapcer&lt;/a&gt;&amp;nbsp;Try:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;VAR PossiblePlayers = SELECTCOLUMNS(FILTER(ALL(playerInfo[ID]),[position] = "something"),"ID",[ID])&lt;/LI-CODE&gt;</description>
    <pubDate>Mon, 19 Sep 2022 14:57:41 GMT</pubDate>
    <dc:creator>Greg_Deckler</dc:creator>
    <dc:date>2022-09-19T14:57:41Z</dc:date>
    <item>
      <title>List of values in a column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/List-of-values-in-a-column/m-p/2778012#M86807</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;This is my dax formula. In &lt;STRONG&gt;var possibleplayers&lt;/STRONG&gt; I want to filter the &lt;STRONG&gt;playerinfo&lt;/STRONG&gt; table to only return players with a certain position. I tried using &lt;STRONG&gt;Filter, Values, AllEXCEPT&lt;/STRONG&gt;&amp;nbsp;but they return tables.I need a function or a combination that returns a list of values from a column like &lt;STRONG&gt;ALL&lt;/STRONG&gt; but unlike &lt;STRONG&gt;ALL&lt;/STRONG&gt; can be filltered.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Sep 2022 14:51:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/List-of-values-in-a-column/m-p/2778012#M86807</guid>
      <dc:creator>Kapcer</dc:creator>
      <dc:date>2022-09-19T14:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: List of values in a column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/List-of-values-in-a-column/m-p/2778025#M86810</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="438980" data-lia-user-login="Kapcer" class="lia-mention lia-mention-user"&gt;Kapcer&lt;/a&gt;&amp;nbsp;Try:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;VAR PossiblePlayers = SELECTCOLUMNS(FILTER(ALL(playerInfo[ID]),[position] = "something"),"ID",[ID])&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 19 Sep 2022 14:57:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/List-of-values-in-a-column/m-p/2778025#M86810</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2022-09-19T14:57:41Z</dc:date>
    </item>
    <item>
      <title>Re: List of values in a column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/List-of-values-in-a-column/m-p/2779099#M86911</link>
      <description>&lt;P&gt;Hi,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="438980" data-lia-user-login="Kapcer" class="lia-mention lia-mention-user"&gt;Kapcer&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;According to your description, you want to return the value of a column of a table. Right?&lt;/P&gt;
&lt;P&gt;You can use the FILTER function to filter your table first, then use the SELECTCOLUMNS() function to get a column in that table to generate a new table, like this :&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;PossiblePlayers = SELECTCOLUMNS(FILTER(ALLSELECTED(playerInfo[ID]),[position] = "your filter condition"),"ID",[ID])&lt;/LI-CODE&gt;
&lt;P&gt;This expression returns a single-column table, and you can use the STATIC() or VALUES() functions for deduplication, or iteratively evaluate using maxX() or MINXX() functions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best Regards,&lt;/P&gt;
&lt;P&gt;Aniya Zhang&lt;/P&gt;
&lt;P&gt;If this post&amp;nbsp;&lt;STRONG&gt;helps&lt;/STRONG&gt;, then please consider&amp;nbsp;&lt;STRONG&gt;&lt;EM&gt;Accept&lt;/EM&gt;&lt;/STRONG&gt;&lt;EM&gt; it as the solution&lt;/EM&gt;&amp;nbsp;to help the other members find it more quickly&lt;/P&gt;</description>
      <pubDate>Tue, 20 Sep 2022 02:07:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/List-of-values-in-a-column/m-p/2779099#M86911</guid>
      <dc:creator>v-yueyunzh-msft</dc:creator>
      <dc:date>2022-09-20T02:07:11Z</dc:date>
    </item>
    <item>
      <title>Re: List of values in a column</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/List-of-values-in-a-column/m-p/2783284#M87144</link>
      <description>&lt;P&gt;Thanks for trying to help, those solutions didn't work. I didn't find one that solves this issue but I achived the result I wanted in a different way.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Sep 2022 08:57:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/List-of-values-in-a-column/m-p/2783284#M87144</guid>
      <dc:creator>Kapcer</dc:creator>
      <dc:date>2022-09-21T08:57:50Z</dc:date>
    </item>
  </channel>
</rss>

