<?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 get a column from the table that is filtered by another column? in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-a-column-from-the-table-that-is-filtered-by-another/m-p/2806226#M88519</link>
    <description>&lt;P&gt;It does work, yes. But a new problem arose: I can't create a relationship with the table I am pulling columns from due to circular dependency.&lt;BR /&gt;&lt;BR /&gt;With Values() it doesn't have CD&lt;/P&gt;</description>
    <pubDate>Thu, 29 Sep 2022 11:27:48 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2022-09-29T11:27:48Z</dc:date>
    <item>
      <title>How to get a column from the table that is filtered by another column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-a-column-from-the-table-that-is-filtered-by-another/m-p/2805969#M88498</link>
      <description>&lt;P&gt;Now, my calculated table looks like this:&lt;/P&gt;&lt;LI-CODE lang="python"&gt;FRU Status intermediate table = 
ADDCOLUMNS(
    VALUES('All Project v2'[Project Name]),
        "Flag", [stat chart]
    )&lt;/LI-CODE&gt;&lt;P&gt;VALUES() here returns all values of the [Project Name] column.&lt;BR /&gt;&lt;BR /&gt;I need it to return values based on the column 'All Project v2'[Dashboard Created] = "Yes", so if the 'project' has 'dashboard' - return the column.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 29 Sep 2022 10:09:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-a-column-from-the-table-that-is-filtered-by-another/m-p/2805969#M88498</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-09-29T10:09:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to get a column from the table that is filtered by another column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-a-column-from-the-table-that-is-filtered-by-another/m-p/2806126#M88506</link>
      <description>&lt;LI-CODE lang="markup"&gt;FRU Status intermediate table =
ADDCOLUMNS (
    CALCULATETABLE (
        VALUES ( 'All Project v2'[Project Name] ),
        'All Project v2'[Dashboard Created] = "Yes"
    ),
    "Flag", [stat chart]
)
&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 29 Sep 2022 10:50:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-a-column-from-the-table-that-is-filtered-by-another/m-p/2806126#M88506</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2022-09-29T10:50:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to get a column from the table that is filtered by another column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-a-column-from-the-table-that-is-filtered-by-another/m-p/2806226#M88519</link>
      <description>&lt;P&gt;It does work, yes. But a new problem arose: I can't create a relationship with the table I am pulling columns from due to circular dependency.&lt;BR /&gt;&lt;BR /&gt;With Values() it doesn't have CD&lt;/P&gt;</description>
      <pubDate>Thu, 29 Sep 2022 11:27:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-a-column-from-the-table-that-is-filtered-by-another/m-p/2806226#M88519</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-09-29T11:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to get a column from the table that is filtered by another column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-a-column-from-the-table-that-is-filtered-by-another/m-p/2806300#M88528</link>
      <description>&lt;P&gt;use DISTINCT instead of VALUES&lt;/P&gt;</description>
      <pubDate>Thu, 29 Sep 2022 11:58:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-a-column-from-the-table-that-is-filtered-by-another/m-p/2806300#M88528</guid>
      <dc:creator>mbamber</dc:creator>
      <dc:date>2022-09-29T11:58:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to get a column from the table that is filtered by another column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-a-column-from-the-table-that-is-filtered-by-another/m-p/2807050#M88630</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;please try&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;FRU Status intermediate table =
SUMMARIZE (
    FILTER ( 'All Project v2', 'All Project v2'[Dashboard Created] = "Yes" ),
    'All Project v2'[Project Name],
    "Flag", [stat chart]
)&lt;/LI-CODE&gt;</description>
      <pubDate>Thu, 29 Sep 2022 17:45:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-a-column-from-the-table-that-is-filtered-by-another/m-p/2807050#M88630</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-09-29T17:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to get a column from the table that is filtered by another column?</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-a-column-from-the-table-that-is-filtered-by-another/m-p/2807961#M88711</link>
      <description>&lt;P&gt;I tried it, and it works fine, but it doesn't solve the further problem...&lt;BR /&gt;&lt;BR /&gt;Well, technically, you guys gave me the solution, so...&lt;/P&gt;</description>
      <pubDate>Fri, 30 Sep 2022 07:14:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-get-a-column-from-the-table-that-is-filtered-by-another/m-p/2807961#M88711</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2022-09-30T07:14:03Z</dc:date>
    </item>
  </channel>
</rss>

