<?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: Hi, I want to create a dynamic table based on user parameter selection. in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hi-I-want-to-create-a-dynamic-table-based-on-user-parameter/m-p/4856259#M185286</link>
    <description>&lt;P&gt;Not yet possible in standard Power BI.&amp;nbsp; In Fabric they slowly move towards that with UDFs and Translytical Task Flows.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There may be (paid) third party visuals that support that.&lt;/P&gt;</description>
    <pubDate>Thu, 23 Oct 2025 00:23:10 GMT</pubDate>
    <dc:creator>lbendlin</dc:creator>
    <dc:date>2025-10-23T00:23:10Z</dc:date>
    <item>
      <title>Hi, I want to create a dynamic table based on user parameter selection.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hi-I-want-to-create-a-dynamic-table-based-on-user-parameter/m-p/4856130#M185283</link>
      <description>&lt;P&gt;In my backend table there are products and thier base price. the user will provide a parameter value (discount which varies for each product) and The calculated Selling Price is = base price * selected parameter value(discount).Now if i enter the parameter value it takes same value for all products but I want an out put where there are multiple products entered and different parameter values.Is that possible?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;eg&lt;/P&gt;&lt;P&gt;Product&amp;nbsp; base Price&amp;nbsp;&lt;/P&gt;&lt;P&gt;TV&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1000&lt;/P&gt;&lt;P&gt;fridge&amp;nbsp; &amp;nbsp; 250&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;now the out put I want is&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Product Base Price&amp;nbsp; &amp;nbsp;Parameter Value (discount )&amp;nbsp; Selling Price&lt;/P&gt;&lt;P&gt;TV&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 1000&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;5% discount&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 950(1000*.95)&lt;/P&gt;&lt;P&gt;fridge&amp;nbsp; &amp;nbsp; &amp;nbsp; 250&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;2 % discount&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; 245 (250*.98)&lt;/P&gt;</description>
      <pubDate>Wed, 22 Oct 2025 18:59:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hi-I-want-to-create-a-dynamic-table-based-on-user-parameter/m-p/4856130#M185283</guid>
      <dc:creator>Pra2010Gha</dc:creator>
      <dc:date>2025-10-22T18:59:42Z</dc:date>
    </item>
    <item>
      <title>Re: Hi, I want to create a dynamic table based on user parameter selection.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hi-I-want-to-create-a-dynamic-table-based-on-user-parameter/m-p/4856259#M185286</link>
      <description>&lt;P&gt;Not yet possible in standard Power BI.&amp;nbsp; In Fabric they slowly move towards that with UDFs and Translytical Task Flows.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There may be (paid) third party visuals that support that.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Oct 2025 00:23:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hi-I-want-to-create-a-dynamic-table-based-on-user-parameter/m-p/4856259#M185286</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2025-10-23T00:23:10Z</dc:date>
    </item>
    <item>
      <title>Re: Hi, I want to create a dynamic table based on user parameter selection.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hi-I-want-to-create-a-dynamic-table-based-on-user-parameter/m-p/4856883#M185310</link>
      <description>&lt;P&gt;Create a separate parameter table with products and their discount rates. Use that table in a many-to-one relationship with your products table.&lt;/P&gt;
&lt;P&gt;Then create a calculated column:&lt;/P&gt;
&lt;P&gt;Selling Price = 'Products'[Base Price] * (1 - 'Parameter Table'[Discount])&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This allows different discount rates per product.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 23 Oct 2025 12:28:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hi-I-want-to-create-a-dynamic-table-based-on-user-parameter/m-p/4856883#M185310</guid>
      <dc:creator>Kedar_Pande</dc:creator>
      <dc:date>2025-10-23T12:28:45Z</dc:date>
    </item>
    <item>
      <title>Re: Hi, I want to create a dynamic table based on user parameter selection.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hi-I-want-to-create-a-dynamic-table-based-on-user-parameter/m-p/4857030#M185315</link>
      <description>&lt;P&gt;can you please share a pbix file for this? so the parameter table&amp;nbsp; can take user input with different values for different&amp;nbsp; products?&lt;/P&gt;</description>
      <pubDate>Thu, 23 Oct 2025 15:01:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hi-I-want-to-create-a-dynamic-table-based-on-user-parameter/m-p/4857030#M185315</guid>
      <dc:creator>Pra2010Gha</dc:creator>
      <dc:date>2025-10-23T15:01:31Z</dc:date>
    </item>
    <item>
      <title>Re: Hi, I want to create a dynamic table based on user parameter selection.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hi-I-want-to-create-a-dynamic-table-based-on-user-parameter/m-p/4859136#M185349</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1377348" data-lia-user-login="Pra2010Gha" class="lia-mention lia-mention-user"&gt;Pra2010Gha&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for reaching out to the Microsoft Fabric Forum Community, and special thanks to&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="100342" data-lia-user-login="lbendlin" class="lia-mention lia-mention-user"&gt;lbendlin&lt;/a&gt;&amp;nbsp;and&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="568855" data-lia-user-login="Kedar_Pande" class="lia-mention lia-mention-user"&gt;Kedar_Pande&lt;/a&gt;&amp;nbsp; for prompt and helpful responses.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As mentioned by the&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="100342" data-lia-user-login="lbendlin" class="lia-mention lia-mention-user"&gt;lbendlin&lt;/a&gt;&amp;nbsp; this functionality is not currently possible in standard Power BI. Parameters apply the same value across all rows, so assigning different parameter values per product isn’t supported yet.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;
&lt;P&gt;Prasanna Kumar&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Oct 2025 08:30:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hi-I-want-to-create-a-dynamic-table-based-on-user-parameter/m-p/4859136#M185349</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-10-27T08:30:53Z</dc:date>
    </item>
    <item>
      <title>Re: Hi, I want to create a dynamic table based on user parameter selection.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hi-I-want-to-create-a-dynamic-table-based-on-user-parameter/m-p/4859545#M185361</link>
      <description>&lt;LI-SPOILER&gt;&lt;P&gt;Microsoft Learn References&lt;/P&gt;&lt;P&gt;RELATED function → &lt;A href="https://learn.microsoft.com/en-us/dax/related-function-dax" target="_blank"&gt;https://learn.microsoft.com/en-us/dax/related-function-dax&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Create relationships in Power BI → &lt;A href="https://learn.microsoft.com/en-us/power-bi/transform-model/desktop-create-and-manage-relationships" target="_blank"&gt;https://learn.microsoft.com/en-us/power-bi/transform-model/desktop-create-and-manage-relationships&lt;/A&gt;&lt;/P&gt;&lt;/LI-SPOILER&gt;</description>
      <pubDate>Mon, 27 Oct 2025 13:37:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hi-I-want-to-create-a-dynamic-table-based-on-user-parameter/m-p/4859545#M185361</guid>
      <dc:creator>Rufyda</dc:creator>
      <dc:date>2025-10-27T13:37:27Z</dc:date>
    </item>
    <item>
      <title>Re: Hi, I want to create a dynamic table based on user parameter selection.</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hi-I-want-to-create-a-dynamic-table-based-on-user-parameter/m-p/4862994#M185483</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1377348" data-lia-user-login="Pra2010Gha" class="lia-mention lia-mention-user"&gt;Pra2010Gha&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just following up to see if the Response provided by community members were helpful in addressing the issue. if the issue still persists Feel free to reach out if you need any further clarification or assistance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Prasanna Kumar&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Oct 2025 03:12:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Hi-I-want-to-create-a-dynamic-table-based-on-user-parameter/m-p/4862994#M185483</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-10-31T03:12:59Z</dc:date>
    </item>
  </channel>
</rss>

