<?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: Create a dynamic sample table from main table based on slicer selection and append it back in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-dynamic-sample-table-from-main-table-based-on-slicer/m-p/4806962#M183860</link>
    <description>&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;I have a table containing products that were returned during the warranty period and products returned after the warranty period. I want to sample a portion of the in-warranty products based on a dynamic ratio that changes with page filters. Ultimately, I need to return &lt;SPAN&gt;1&lt;/SPAN&gt; for all after-warranty products and for the sampled in-warranty products, and &lt;SPAN&gt;0&lt;/SPAN&gt; for others.&lt;/P&gt;&lt;P&gt;However, in &lt;SPAN&gt;CONTAINSROW&lt;/SPAN&gt;, the second argument must be a single value, and it doesn't return &lt;SPAN&gt;TRUE&lt;/SPAN&gt; when using a column or even &lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;. As a result, the output is &lt;SPAN&gt;BLANK&lt;/SPAN&gt;. Please suggest any solutions that come to mind.&lt;BR /&gt;This is my current code:&lt;BR /&gt;IsSelected =&lt;BR /&gt;VAR _seed = SELECTEDVALUE('Seed'[Seed], 1)&lt;BR /&gt;VAR AfterSet =&lt;BR /&gt;CALCULATETABLE(&lt;BR /&gt;'FACT ZWARRBASE_DURABILTY',&lt;BR /&gt;KEEPFILTERS('FACT ZWARRBASE_DURABILTY'[Warr_Period] = 1),&lt;BR /&gt;KEEPFILTERS('FACT ZWARRBASE_DURABILTY'[Warr_Period_status] = "returned after the warranty")&lt;BR /&gt;)&lt;BR /&gt;VAR AfterCount = COUNTROWS(AfterSet)&lt;BR /&gt;VAR _rateRaw = [RET_RATE_ACT]&lt;BR /&gt;VAR _rate = MAX(0, MIN(0.999999, _rateRaw))&lt;BR /&gt;VAR SampleN_Base = ROUNDUP( DIVIDE( AfterCount * _rate, 1 - _rate ), 0 )&lt;BR /&gt;VAR InSet =&lt;BR /&gt;CALCULATETABLE(&lt;BR /&gt;'FACT ZWARRBASE_DURABILTY',&lt;BR /&gt;KEEPFILTERS('FACT ZWARRBASE_DURABILTY'[Warr_Period] = 1),&lt;BR /&gt;KEEPFILTERS('FACT ZWARRBASE_DURABILTY'[Warr_Period_status] = "returned in warranty period")&lt;BR /&gt;)&lt;BR /&gt;VAR InSetCount = COUNTROWS(InSet)&lt;BR /&gt;VAR SampleN = MIN(SampleN_Base, InSetCount)&lt;BR /&gt;VAR InSetWithKey =&lt;BR /&gt;ADDCOLUMNS(&lt;BR /&gt;InSet,&lt;BR /&gt;"__RowID", 'FACT ZWARRBASE_DURABILTY'[RowID]&lt;BR /&gt;)&lt;BR /&gt;VAR InSetWithRand =&lt;BR /&gt;ADDCOLUMNS(&lt;BR /&gt;InSetWithKey,&lt;BR /&gt;"__Rand",&lt;BR /&gt;VAR rid = [__RowID]&lt;BR /&gt;VAR h = MOD( MOD(VALUE(rid) * 131071, 1000003) + MOD(_seed * 524287, 1000003), 1000003 )&lt;BR /&gt;RETURN h&lt;BR /&gt;)&lt;BR /&gt;VAR SelectedInWarranty =&lt;BR /&gt;TOPN(&lt;BR /&gt;SampleN,&lt;BR /&gt;InSetWithRand,&lt;BR /&gt;[__Rand], ASC,&lt;BR /&gt;[__RowID], ASC&lt;BR /&gt;)&lt;BR /&gt;VAR SelectedIDs =&lt;BR /&gt;SELECTCOLUMNS(SelectedInWarranty, "__RowID", [__RowID])&lt;BR /&gt;RETURN&lt;BR /&gt;IF(&lt;BR /&gt;HASONEVALUE('FACT ZWARRBASE_DURABILTY'[RowID]) &amp;amp;&amp;amp;&lt;BR /&gt;HASONEVALUE('FACT ZWARRBASE_DURABILTY'[Warr_Period_status]) &amp;amp;&amp;amp;&lt;BR /&gt;SELECTEDVALUE('FACT ZWARRBASE_DURABILTY'[Warr_Period]) = 1,&lt;BR /&gt;VAR _rowid = SELECTEDVALUE('FACT ZWARRBASE_DURABILTY'[RowID])&lt;BR /&gt;VAR _status = SELECTEDVALUE('FACT ZWARRBASE_DURABILTY'[Warr_Period_status])&lt;BR /&gt;RETURN&lt;BR /&gt;IF(&lt;BR /&gt;_status = "returned after warranty period", 1,&lt;BR /&gt;_status = "returned in warranty period" &amp;amp;&amp;amp; NOT ISBLANK(_rowid) &amp;amp;&amp;amp; CONTAINSROW(SelectedIDs, _rowid), 1,&lt;BR /&gt;0&lt;BR /&gt;),&lt;BR /&gt;BLANK()&lt;BR /&gt;)&lt;/P&gt;</description>
    <pubDate>Mon, 25 Aug 2025 14:14:40 GMT</pubDate>
    <dc:creator>mahsan_ojaghian</dc:creator>
    <dc:date>2025-08-25T14:14:40Z</dc:date>
    <item>
      <title>Create a dynamic sample table from main table based on slicer selection and append it back</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-dynamic-sample-table-from-main-table-based-on-slicer/m-p/4801106#M183686</link>
      <description>&lt;P class="lia-align-left"&gt;How can I create a sample table from my main table in Power BI using the &lt;STRONG&gt;SAMPLE&lt;/STRONG&gt; function, in such a way that I can later &lt;STRONG&gt;append&lt;/STRONG&gt; this sample table back to the original table?&lt;/P&gt;&lt;P class="lia-align-left"&gt;The challenge I am facing is that the&lt;STRONG&gt; SAMPLE&lt;/STRONG&gt; function doesn’t seem to respect slicers applied in the report page. I need the sample table to be &lt;STRONG&gt;re-generated dynamically&lt;/STRONG&gt; based on the slicer selections (so that new samples are created from the filtered population).&lt;/P&gt;&lt;P class="lia-align-left"&gt;Is there a way to make the sample table fully responsive to slicers, and still be able to append it back to the main table.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Aug 2025 12:43:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-dynamic-sample-table-from-main-table-based-on-slicer/m-p/4801106#M183686</guid>
      <dc:creator>mahsan_ojaghian</dc:creator>
      <dc:date>2025-08-19T12:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: Create a dynamic sample table from main table based on slicer selection and append it back</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-dynamic-sample-table-from-main-table-based-on-slicer/m-p/4801109#M183687</link>
      <description>&lt;P&gt;In Tabular, tables cannot change dinamically. Once SAMPLE has created the table, the table is that one and cannot change. If you explain what you want to do, we can try helping you finding another approach to reach your goals.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this helped, please consider giving kudos and mark as a solution&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="273" data-lia-user-login="me" class="lia-mention lia-mention-user"&gt;me&lt;/a&gt; in replies or I'll lose your thread&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Want to check your DAX skills? &lt;A href="https://www.linkedin.com/company/kubisco/" target="_blank"&gt;Answer my biweekly DAX challenges on the kubisco Linkedin page&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Consider voting &lt;A href="https://community.fabric.microsoft.com/t5/Fabric-Ideas/Power-BI-Filter-Pane-as-an-icon-on-the-right-side-bar-in-on/idi-p/4728588" target="_blank"&gt;this Power BI idea&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Francesco Bergamaschi&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;MBA, M.Eng, M.Econ, Professor of BI&lt;/P&gt;</description>
      <pubDate>Tue, 19 Aug 2025 12:47:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-dynamic-sample-table-from-main-table-based-on-slicer/m-p/4801109#M183687</guid>
      <dc:creator>FBergamaschi</dc:creator>
      <dc:date>2025-08-19T12:47:26Z</dc:date>
    </item>
    <item>
      <title>Re: Create a dynamic sample table from main table based on slicer selection and append it back</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-dynamic-sample-table-from-main-table-based-on-slicer/m-p/4801116#M183688</link>
      <description>&lt;P&gt;Thanks for the kudo. If this was a solution, please mark it as such so others can benefit from this information&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Tue, 19 Aug 2025 12:57:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-dynamic-sample-table-from-main-table-based-on-slicer/m-p/4801116#M183688</guid>
      <dc:creator>FBergamaschi</dc:creator>
      <dc:date>2025-08-19T12:57:31Z</dc:date>
    </item>
    <item>
      <title>Re: Create a dynamic sample table from main table based on slicer selection and append it back</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-dynamic-sample-table-from-main-table-based-on-slicer/m-p/4803350#M183732</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="383961" data-lia-user-login="mahsan_ojaghian" class="lia-mention lia-mention-user"&gt;mahsan_ojaghian&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The most common approach I would recommend is to&amp;nbsp;create a calculated column.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Random = RAND()&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then in your visual, use TOPN() or a measure to dynamically restrict how many rows appear, based on slicers.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Sample Flag =
VAR _TopN = 100   -- number of rows you want sampled
RETURN
IF (
    RANKX ( ALLSELECTED ( 'MainTable' ), 'MainTable'[Random], , ASC )
    &amp;lt;= _TopN,
    1,
    0
)&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps - let me know if you might have any further questions.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Aug 2025 08:42:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-dynamic-sample-table-from-main-table-based-on-slicer/m-p/4803350#M183732</guid>
      <dc:creator>Sahir_Maharaj</dc:creator>
      <dc:date>2025-08-21T08:42:31Z</dc:date>
    </item>
    <item>
      <title>Re: Create a dynamic sample table from main table based on slicer selection and append it back</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-dynamic-sample-table-from-main-table-based-on-slicer/m-p/4806737#M183849</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="383961" data-lia-user-login="mahsan_ojaghian" class="lia-mention lia-mention-user"&gt;mahsan_ojaghian&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;SPAN data-teams="true"&gt;hope you are doing great. May we know if your issue is solved or if you are still experiencing difficulties. Please share the details as it will help the community, especially others with similar issues.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Aug 2025 11:27:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-dynamic-sample-table-from-main-table-based-on-slicer/m-p/4806737#M183849</guid>
      <dc:creator>v-hashadapu</dc:creator>
      <dc:date>2025-08-25T11:27:00Z</dc:date>
    </item>
    <item>
      <title>Re: Create a dynamic sample table from main table based on slicer selection and append it back</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-dynamic-sample-table-from-main-table-based-on-slicer/m-p/4806962#M183860</link>
      <description>&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;I have a table containing products that were returned during the warranty period and products returned after the warranty period. I want to sample a portion of the in-warranty products based on a dynamic ratio that changes with page filters. Ultimately, I need to return &lt;SPAN&gt;1&lt;/SPAN&gt; for all after-warranty products and for the sampled in-warranty products, and &lt;SPAN&gt;0&lt;/SPAN&gt; for others.&lt;/P&gt;&lt;P&gt;However, in &lt;SPAN&gt;CONTAINSROW&lt;/SPAN&gt;, the second argument must be a single value, and it doesn't return &lt;SPAN&gt;TRUE&lt;/SPAN&gt; when using a column or even &lt;SPAN&gt;SELECTEDVALUE&lt;/SPAN&gt;. As a result, the output is &lt;SPAN&gt;BLANK&lt;/SPAN&gt;. Please suggest any solutions that come to mind.&lt;BR /&gt;This is my current code:&lt;BR /&gt;IsSelected =&lt;BR /&gt;VAR _seed = SELECTEDVALUE('Seed'[Seed], 1)&lt;BR /&gt;VAR AfterSet =&lt;BR /&gt;CALCULATETABLE(&lt;BR /&gt;'FACT ZWARRBASE_DURABILTY',&lt;BR /&gt;KEEPFILTERS('FACT ZWARRBASE_DURABILTY'[Warr_Period] = 1),&lt;BR /&gt;KEEPFILTERS('FACT ZWARRBASE_DURABILTY'[Warr_Period_status] = "returned after the warranty")&lt;BR /&gt;)&lt;BR /&gt;VAR AfterCount = COUNTROWS(AfterSet)&lt;BR /&gt;VAR _rateRaw = [RET_RATE_ACT]&lt;BR /&gt;VAR _rate = MAX(0, MIN(0.999999, _rateRaw))&lt;BR /&gt;VAR SampleN_Base = ROUNDUP( DIVIDE( AfterCount * _rate, 1 - _rate ), 0 )&lt;BR /&gt;VAR InSet =&lt;BR /&gt;CALCULATETABLE(&lt;BR /&gt;'FACT ZWARRBASE_DURABILTY',&lt;BR /&gt;KEEPFILTERS('FACT ZWARRBASE_DURABILTY'[Warr_Period] = 1),&lt;BR /&gt;KEEPFILTERS('FACT ZWARRBASE_DURABILTY'[Warr_Period_status] = "returned in warranty period")&lt;BR /&gt;)&lt;BR /&gt;VAR InSetCount = COUNTROWS(InSet)&lt;BR /&gt;VAR SampleN = MIN(SampleN_Base, InSetCount)&lt;BR /&gt;VAR InSetWithKey =&lt;BR /&gt;ADDCOLUMNS(&lt;BR /&gt;InSet,&lt;BR /&gt;"__RowID", 'FACT ZWARRBASE_DURABILTY'[RowID]&lt;BR /&gt;)&lt;BR /&gt;VAR InSetWithRand =&lt;BR /&gt;ADDCOLUMNS(&lt;BR /&gt;InSetWithKey,&lt;BR /&gt;"__Rand",&lt;BR /&gt;VAR rid = [__RowID]&lt;BR /&gt;VAR h = MOD( MOD(VALUE(rid) * 131071, 1000003) + MOD(_seed * 524287, 1000003), 1000003 )&lt;BR /&gt;RETURN h&lt;BR /&gt;)&lt;BR /&gt;VAR SelectedInWarranty =&lt;BR /&gt;TOPN(&lt;BR /&gt;SampleN,&lt;BR /&gt;InSetWithRand,&lt;BR /&gt;[__Rand], ASC,&lt;BR /&gt;[__RowID], ASC&lt;BR /&gt;)&lt;BR /&gt;VAR SelectedIDs =&lt;BR /&gt;SELECTCOLUMNS(SelectedInWarranty, "__RowID", [__RowID])&lt;BR /&gt;RETURN&lt;BR /&gt;IF(&lt;BR /&gt;HASONEVALUE('FACT ZWARRBASE_DURABILTY'[RowID]) &amp;amp;&amp;amp;&lt;BR /&gt;HASONEVALUE('FACT ZWARRBASE_DURABILTY'[Warr_Period_status]) &amp;amp;&amp;amp;&lt;BR /&gt;SELECTEDVALUE('FACT ZWARRBASE_DURABILTY'[Warr_Period]) = 1,&lt;BR /&gt;VAR _rowid = SELECTEDVALUE('FACT ZWARRBASE_DURABILTY'[RowID])&lt;BR /&gt;VAR _status = SELECTEDVALUE('FACT ZWARRBASE_DURABILTY'[Warr_Period_status])&lt;BR /&gt;RETURN&lt;BR /&gt;IF(&lt;BR /&gt;_status = "returned after warranty period", 1,&lt;BR /&gt;_status = "returned in warranty period" &amp;amp;&amp;amp; NOT ISBLANK(_rowid) &amp;amp;&amp;amp; CONTAINSROW(SelectedIDs, _rowid), 1,&lt;BR /&gt;0&lt;BR /&gt;),&lt;BR /&gt;BLANK()&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Mon, 25 Aug 2025 14:14:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-dynamic-sample-table-from-main-table-based-on-slicer/m-p/4806962#M183860</guid>
      <dc:creator>mahsan_ojaghian</dc:creator>
      <dc:date>2025-08-25T14:14:40Z</dc:date>
    </item>
    <item>
      <title>Re: Create a dynamic sample table from main table based on slicer selection and append it back</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-dynamic-sample-table-from-main-table-based-on-slicer/m-p/4808792#M183904</link>
      <description>&lt;P&gt;Thanks for checking in! My issue isn't resolved yet. I have a DAX Measure in Power BI to sample rows from a table based on a dynamic ratio from page filters. It should return 1 for sampled rows and after-warranty rows, and 0 for others. The sampling works, and I get the correct row indexes in SelectedIDs. But CONTAINSROW(SelectedIDs, _rowid) always returns FALSE when using _rowid = SELECTEDVALUE('Table'[RowID]), though it works with a fixed value like 123. I tried SUMX, but it slows down or breaks the visual due to large data. I need a way to compare each row's RowID with SelectedIDs row-by-row to return 1 for matches, without performance issues. Any ideas?&lt;/P&gt;</description>
      <pubDate>Wed, 27 Aug 2025 06:20:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-dynamic-sample-table-from-main-table-based-on-slicer/m-p/4808792#M183904</guid>
      <dc:creator>mahsan_ojaghian</dc:creator>
      <dc:date>2025-08-27T06:20:15Z</dc:date>
    </item>
    <item>
      <title>Re: Create a dynamic sample table from main table based on slicer selection and append it back</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-dynamic-sample-table-from-main-table-based-on-slicer/m-p/4809833#M183947</link>
      <description>&lt;P&gt;Hi &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="383961" data-lia-user-login="mahsan_ojaghian" class="lia-mention lia-mention-user"&gt;mahsan_ojaghian&lt;/a&gt;&amp;nbsp;, Thank you for reaching out to the Microsoft Fabric Community Forum.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I reproduced the scenario on my end using sample data and it worked successfully. To help you better understand the implementation, I’ve attached the &lt;STRONG&gt;.pbix&lt;/STRONG&gt; file for your reference. Please take a look at it and let me know your observations.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for being part of the Microsoft Fabric Community!&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Aug 2025 06:52:07 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-dynamic-sample-table-from-main-table-based-on-slicer/m-p/4809833#M183947</guid>
      <dc:creator>v-hashadapu</dc:creator>
      <dc:date>2025-08-28T06:52:07Z</dc:date>
    </item>
    <item>
      <title>Re: Create a dynamic sample table from main table based on slicer selection and append it back</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-dynamic-sample-table-from-main-table-based-on-slicer/m-p/4813205#M184041</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="383961" data-lia-user-login="mahsan_ojaghian" class="lia-mention lia-mention-user"&gt;mahsan_ojaghian&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;SPAN data-teams="true"&gt;Hope you're doing fine. Can you confirm if the problem is solved or still persists? Sharing your details will help others in the community.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 09:16:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-dynamic-sample-table-from-main-table-based-on-slicer/m-p/4813205#M184041</guid>
      <dc:creator>v-hashadapu</dc:creator>
      <dc:date>2025-09-01T09:16:18Z</dc:date>
    </item>
    <item>
      <title>Re: Create a dynamic sample table from main table based on slicer selection and append it back</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-dynamic-sample-table-from-main-table-based-on-slicer/m-p/4816289#M184156</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thank you so much for your help on my question! I’m sorry for the late reply — I’ve been working through a few challenges implementing your solution and testing that the sample counts matched correctly, which took me some extra time.&lt;/P&gt;&lt;P&gt;I really appreciate the time and effort you put into guiding me. Your explanation was very helpful, and I’m grateful you shared your knowledge.&lt;/P&gt;&lt;P&gt;Thanks again!&lt;/P&gt;</description>
      <pubDate>Thu, 04 Sep 2025 05:18:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Create-a-dynamic-sample-table-from-main-table-based-on-slicer/m-p/4816289#M184156</guid>
      <dc:creator>mahsan_ojaghian</dc:creator>
      <dc:date>2025-09-04T05:18:27Z</dc:date>
    </item>
  </channel>
</rss>

