<?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 extract every Nth row (record) in an existing table into a new table (Not Using Power Query) in Desktop</title>
    <link>https://community.fabric.microsoft.com/t5/Desktop/How-to-extract-every-Nth-row-record-in-an-existing-table-into-a/m-p/2685303#M940286</link>
    <description>&lt;P&gt;You put me on the right track!&lt;BR /&gt;&lt;BR /&gt;Thanks!&lt;BR /&gt;&lt;BR /&gt;Here is what I did...&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Extract_HR_PipeDrive_Deals = &lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;ALL&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;HR_PipeDriveDeals_Running_Totals&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;HR_PipeDriveDeals_Running_Totals[Modulo]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;6&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
    <pubDate>Sat, 06 Aug 2022 18:17:25 GMT</pubDate>
    <dc:creator>GreggPowell</dc:creator>
    <dc:date>2022-08-06T18:17:25Z</dc:date>
    <item>
      <title>How to extract every Nth row (record) in an existing table into a new table (Not Using Power Query)</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/How-to-extract-every-Nth-row-record-in-an-existing-table-into-a/m-p/2685091#M940204</link>
      <description>&lt;P&gt;How to extract every Nth row (record) in an existing table into a new table (Not Using Power Query).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a table where the data is pulled from SharePoint. One column in the table I created from a measure&lt;BR /&gt;&lt;BR /&gt;New Column = Table[Measure]&lt;BR /&gt;&lt;BR /&gt;So, that column does not show up when I transform the data - so I can't use Power Query.&lt;BR /&gt;&lt;BR /&gt;I want to use Dax to extract every Nth row (in my case exactly, the 1st and then every 7th row) into a new table.&lt;BR /&gt;&lt;BR /&gt;Is that even possible?&lt;/P&gt;</description>
      <pubDate>Sat, 06 Aug 2022 07:33:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/How-to-extract-every-Nth-row-record-in-an-existing-table-into-a/m-p/2685091#M940204</guid>
      <dc:creator>GreggPowell</dc:creator>
      <dc:date>2022-08-06T07:33:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract every Nth row (record) in an existing table into a new table (Not Using Power Query)</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/How-to-extract-every-Nth-row-record-in-an-existing-table-into-a/m-p/2685101#M940207</link>
      <description>&lt;P&gt;Are you able to use power query to add an index column followed by a calculated column based on it using Number.Mod to your existing table?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can then use Dax to create a calculated table along the lines of:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;NewTable =&lt;BR /&gt;CALCULATETABLE (&lt;/P&gt;
&lt;P&gt;&amp;nbsp;OriginalTable,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;ModColumn = 1&lt;/P&gt;
&lt;P&gt;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 06 Aug 2022 08:15:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/How-to-extract-every-Nth-row-record-in-an-existing-table-into-a/m-p/2685101#M940207</guid>
      <dc:creator>bcdobbs</dc:creator>
      <dc:date>2022-08-06T08:15:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract every Nth row (record) in an existing table into a new table (Not Using Power Query)</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/How-to-extract-every-Nth-row-record-in-an-existing-table-into-a/m-p/2685262#M940263</link>
      <description>&lt;P&gt;Had already added an index column. Problem is, I can't just tell it the row numbers I want to pick, because an API updates the data every day with a new row - so the whole thing must be automated.&lt;BR /&gt;&lt;BR /&gt;I found this below - this is what I need to do.....&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;Problem is with this Excel formula:&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;=&lt;/SPAN&gt;&lt;A href="https://exceljet.net/excel-functions/excel-filter-function" target="_blank" rel="noopener"&gt;&lt;SPAN class=""&gt;FILTER&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN class=""&gt;(&lt;/SPAN&gt;data&lt;SPAN class=""&gt;,&lt;/SPAN&gt;&lt;A href="https://exceljet.net/excel-functions/excel-mod-function" target="_blank" rel="noopener"&gt;&lt;SPAN class=""&gt;MOD&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN class=""&gt;(&lt;/SPAN&gt;&lt;A href="https://exceljet.net/excel-functions/excel-sequence-function" target="_blank" rel="noopener"&gt;&lt;SPAN class=""&gt;SEQUENCE&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN class=""&gt;(&lt;/SPAN&gt;&lt;A href="https://exceljet.net/excel-functions/excel-rows-function" target="_blank" rel="noopener"&gt;&lt;SPAN class=""&gt;ROWS&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN class=""&gt;(&lt;/SPAN&gt;data&lt;SPAN class=""&gt;)),&lt;/SPAN&gt;&lt;SPAN class=""&gt;3&lt;/SPAN&gt;&lt;SPAN class=""&gt;)&lt;/SPAN&gt;&lt;SPAN class=""&gt;=&lt;/SPAN&gt;&lt;SPAN class=""&gt;0&lt;/SPAN&gt;&lt;SPAN class=""&gt;)&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN class=""&gt;I can't find the equivelent Excel ROWS() function in DAX - so I can replicate this.&lt;BR /&gt;&lt;BR /&gt;I think the ROWS() function is the only incompatibility between DAX and Excel - not sure though.&lt;BR /&gt;&lt;BR /&gt;Can you (or anyone) help me rewrite this in DAX?&lt;BR /&gt;&lt;BR /&gt;THANKS!!!&lt;BR /&gt;Gregg P.&lt;BR /&gt;Arizona USA&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 06 Aug 2022 16:42:51 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/How-to-extract-every-Nth-row-record-in-an-existing-table-into-a/m-p/2685262#M940263</guid>
      <dc:creator>GreggPowell</dc:creator>
      <dc:date>2022-08-06T16:42:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract every Nth row (record) in an existing table into a new table (Not Using Power Query)</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/How-to-extract-every-Nth-row-record-in-an-existing-table-into-a/m-p/2685285#M940279</link>
      <description>&lt;P&gt;What I was suggesting basically is that. Only difference is I'd suggest creating the modulo column in power query and then using the calculatetable to filter based on it.&lt;/P&gt;</description>
      <pubDate>Sat, 06 Aug 2022 17:25:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/How-to-extract-every-Nth-row-record-in-an-existing-table-into-a/m-p/2685285#M940279</guid>
      <dc:creator>bcdobbs</dc:creator>
      <dc:date>2022-08-06T17:25:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract every Nth row (record) in an existing table into a new table (Not Using Power Query)</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/How-to-extract-every-Nth-row-record-in-an-existing-table-into-a/m-p/2685290#M940281</link>
      <description>&lt;P&gt;I'm away from&lt;/P&gt;
&lt;P&gt;a computer until Tuesday evening. Happy to build a demo at that point if no one gets there first.&lt;/P&gt;</description>
      <pubDate>Sat, 06 Aug 2022 17:31:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/How-to-extract-every-Nth-row-record-in-an-existing-table-into-a/m-p/2685290#M940281</guid>
      <dc:creator>bcdobbs</dc:creator>
      <dc:date>2022-08-06T17:31:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to extract every Nth row (record) in an existing table into a new table (Not Using Power Query)</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/How-to-extract-every-Nth-row-record-in-an-existing-table-into-a/m-p/2685303#M940286</link>
      <description>&lt;P&gt;You put me on the right track!&lt;BR /&gt;&lt;BR /&gt;Thanks!&lt;BR /&gt;&lt;BR /&gt;Here is what I did...&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;Extract_HR_PipeDrive_Deals = &lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;ALL&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;HR_PipeDriveDeals_Running_Totals&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;SPAN&gt;HR_PipeDriveDeals_Running_Totals[Modulo]&lt;/SPAN&gt;&lt;SPAN&gt;=&lt;/SPAN&gt;&lt;SPAN&gt;6&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Sat, 06 Aug 2022 18:17:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/How-to-extract-every-Nth-row-record-in-an-existing-table-into-a/m-p/2685303#M940286</guid>
      <dc:creator>GreggPowell</dc:creator>
      <dc:date>2022-08-06T18:17:25Z</dc:date>
    </item>
  </channel>
</rss>

