<?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 dummy table, and to introduce a condition so only return subset of rows in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/dummy-table-and-to-introduce-a-condition-so-only-return-subset/m-p/4731614#M181246</link>
    <description>&lt;P&gt;I have created an offshoot dummy table but only want to include a certain subset - say the original table has 20000 rows, I just want to return around 500 that meet a set criteria. Would the table be able to provide for that condition, incorporating SELECTCOLUMNS ? I've tried to play around with the below but can't get it to accept. Streamlined version below. Looking for it to only return those where --- IF 'Table'[Company]="Company4"&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;DUMMYTABLE = SELECTCOLUMNS(&lt;BR /&gt;Table,&lt;BR /&gt;"Ref", 'Table'[Reference],&lt;BR /&gt;"From", 'Table'[From],&lt;BR /&gt;"To", 'Table'[To]&lt;BR /&gt;)&lt;/P&gt;</description>
    <pubDate>Fri, 13 Jun 2025 13:23:07 GMT</pubDate>
    <dc:creator>JK-1</dc:creator>
    <dc:date>2025-06-13T13:23:07Z</dc:date>
    <item>
      <title>dummy table, and to introduce a condition so only return subset of rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/dummy-table-and-to-introduce-a-condition-so-only-return-subset/m-p/4731614#M181246</link>
      <description>&lt;P&gt;I have created an offshoot dummy table but only want to include a certain subset - say the original table has 20000 rows, I just want to return around 500 that meet a set criteria. Would the table be able to provide for that condition, incorporating SELECTCOLUMNS ? I've tried to play around with the below but can't get it to accept. Streamlined version below. Looking for it to only return those where --- IF 'Table'[Company]="Company4"&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;DUMMYTABLE = SELECTCOLUMNS(&lt;BR /&gt;Table,&lt;BR /&gt;"Ref", 'Table'[Reference],&lt;BR /&gt;"From", 'Table'[From],&lt;BR /&gt;"To", 'Table'[To]&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jun 2025 13:23:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/dummy-table-and-to-introduce-a-condition-so-only-return-subset/m-p/4731614#M181246</guid>
      <dc:creator>JK-1</dc:creator>
      <dc:date>2025-06-13T13:23:07Z</dc:date>
    </item>
    <item>
      <title>Re: dummy table, and to introduce a condition so only return subset of rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/dummy-table-and-to-introduce-a-condition-so-only-return-subset/m-p/4731623#M181247</link>
      <description>&lt;P&gt;You can use&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;DUMMYTABLE
    = SELECTCOLUMNS (
        FILTER ( Table, 'Table'[Company] = "Company4" ),
        "Ref", 'Table'[Reference],
        "From", 'Table'[From],
        "To", 'Table'[To]
    )
&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 13 Jun 2025 13:33:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/dummy-table-and-to-introduce-a-condition-so-only-return-subset/m-p/4731623#M181247</guid>
      <dc:creator>johnt75</dc:creator>
      <dc:date>2025-06-13T13:33:56Z</dc:date>
    </item>
    <item>
      <title>Re: dummy table, and to introduce a condition so only return subset of rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/dummy-table-and-to-introduce-a-condition-so-only-return-subset/m-p/4731742#M181254</link>
      <description>&lt;P&gt;Perfect. Thank you so much&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jun 2025 14:59:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/dummy-table-and-to-introduce-a-condition-so-only-return-subset/m-p/4731742#M181254</guid>
      <dc:creator>JK-1</dc:creator>
      <dc:date>2025-06-13T14:59:58Z</dc:date>
    </item>
  </channel>
</rss>

