<?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: Can I have a slider in the report view change data in the Table view in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-I-have-a-slider-in-the-report-view-change-data-in-the-Table/m-p/3581171#M138139</link>
    <description>&lt;P&gt;Yes, you can achieve this in Power BI by creating a parameter and using it in calculated columns or measures that are then used in your table matrix. Here's a general outline of how you can set this up:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Create a Parameter:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Go to the "Home" tab in Power BI Desktop.&lt;/LI&gt;&lt;LI&gt;Click on "New Source" and select "Parameter."&lt;/LI&gt;&lt;LI&gt;Define your parameter with a name (e.g., WeightParameter) and set the data type to Decimal.&lt;/LI&gt;&lt;LI&gt;Define the minimum, maximum, and default values for your parameter.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Create Calculated Columns or Measures:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;For each column that you want to be affected by the slider, create calculated columns or measures that use the parameter.&lt;/LI&gt;&lt;LI&gt;For example, if you have a column A, create a calculated column like this:&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Standardized_Column_A = YourTable[Column_A] * YourParameter[WeightParameter]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;UL&gt;&lt;LI&gt;Repeat this for other columns.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Create a Hierarchy or Dependency:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Ensure that your columns are organized in a way that reflects the dependency. For example, Standardized columns depend on the original columns, and Relative Columns depend on Standardized columns.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Use the Calculated Columns/Measures in the Table Matrix:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Build your table matrix and use the calculated columns or measures in the appropriate places.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Create Relationships:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;If needed, create relationships between tables to ensure proper filtering.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Add the Parameter Slider to the Report:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Add the parameter slider to your report.&lt;/LI&gt;&lt;LI&gt;Use the "WeightParameter" in your calculations.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Test the Slider:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Test the slider by adjusting the parameter value and observe the trickle-down effect on your table matrix.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Make sure that you have a clear understanding of your data model and the relationships between tables. If your calculations involve complex logic, you might need to write more sophisticated DAX expressions.&lt;/P&gt;&lt;P&gt;Additionally, Power BI's community forums and documentation are valuable resources where you can find examples and ask specific questions related to your scenario.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If this post&amp;nbsp;helps, then please consider&amp;nbsp;Accepting it as the solution&amp;nbsp;to help the other members find it more quickly.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;In case there is still a problem, please feel free and explain your issue in detail,&amp;nbsp;It will be my pleasure to assist you in any way I can.&lt;/STRONG&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 13 Dec 2023 06:34:00 GMT</pubDate>
    <dc:creator>123abc</dc:creator>
    <dc:date>2023-12-13T06:34:00Z</dc:date>
    <item>
      <title>Can I have a slider in the report view change data in the Table view</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-I-have-a-slider-in-the-report-view-change-data-in-the-Table/m-p/3581013#M138128</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I am working on a visual report for my Power Bi project, where I have a table matrix with numerous columns in it. I want to make sliders that works a weigh metric that changes the values in these columns. These columns are made up of the following.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Column A,&lt;/P&gt;&lt;P&gt;Standardized Column A&lt;/P&gt;&lt;P&gt;Column B&lt;/P&gt;&lt;P&gt;Standardized Column B&lt;/P&gt;&lt;P&gt;Column C&lt;/P&gt;&lt;P&gt;Standardized Column C&lt;/P&gt;&lt;P&gt;Relative Column ABC&lt;/P&gt;&lt;P&gt;Ranking of Relative Columns ABC&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My goal is to have a slider that adds a calculated weight to columns A,B,C and by changing the weight on this slider, this causes a trickle down effect where it changes the Standardized Column A,B, and C,&amp;nbsp; Relative Columns ABC, and the Ranking of the Relative Columns ABC.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The goal is to have these values change on the table the matrix, which serves as a filter for all other visuals on the panel.&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have been able to create a parameter that works for changing the values in column on the table matrix, however I am unable to get this to have the trickle down effect.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Has anyone ever created a slider that works like this?&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2023 03:28:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-I-have-a-slider-in-the-report-view-change-data-in-the-Table/m-p/3581013#M138128</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-12-13T03:28:56Z</dc:date>
    </item>
    <item>
      <title>Re: Can I have a slider in the report view change data in the Table view</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-I-have-a-slider-in-the-report-view-change-data-in-the-Table/m-p/3581170#M138138</link>
      <description>&lt;P&gt;Yes, you can achieve this in Power BI by creating a parameter and using it in calculated columns or measures that are then used in your table matrix. Here's a general outline of how you can set this up:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Create a Parameter:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Go to the "Home" tab in Power BI Desktop.&lt;/LI&gt;&lt;LI&gt;Click on "New Source" and select "Parameter."&lt;/LI&gt;&lt;LI&gt;Define your parameter with a name (e.g., WeightParameter) and set the data type to Decimal.&lt;/LI&gt;&lt;LI&gt;Define the minimum, maximum, and default values for your parameter.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Create Calculated Columns or Measures:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;For each column that you want to be affected by the slider, create calculated columns or measures that use the parameter.&lt;/LI&gt;&lt;LI&gt;For example, if you have a column A, create a calculated column like this:&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Standardized_Column_A = YourTable[Column_A] * YourParameter[WeightParameter]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;UL&gt;&lt;LI&gt;Repeat this for other columns.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Create a Hierarchy or Dependency:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Ensure that your columns are organized in a way that reflects the dependency. For example, Standardized columns depend on the original columns, and Relative Columns depend on Standardized columns.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Use the Calculated Columns/Measures in the Table Matrix:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Build your table matrix and use the calculated columns or measures in the appropriate places.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Create Relationships:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;If needed, create relationships between tables to ensure proper filtering.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Add the Parameter Slider to the Report:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Add the parameter slider to your report.&lt;/LI&gt;&lt;LI&gt;Use the "WeightParameter" in your calculations.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Test the Slider:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Test the slider by adjusting the parameter value and observe the trickle-down effect on your table matrix.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Make sure that you have a clear understanding of your data model and the relationships between tables. If your calculations involve complex logic, you might need to write more sophisticated DAX expressions.&lt;/P&gt;&lt;P&gt;Additionally, Power BI's community forums and documentation are valuable resources where you can find examples and ask specific questions related to your scenario.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If this post&amp;nbsp;helps, then please consider&amp;nbsp;Accepting it as the solution&amp;nbsp;to help the other members find it more quickly.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;In case there is still a problem, please feel free and explain your issue in detail,&amp;nbsp;It will be my pleasure to assist you in any way I can.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2023 06:33:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-I-have-a-slider-in-the-report-view-change-data-in-the-Table/m-p/3581170#M138138</guid>
      <dc:creator>123abc</dc:creator>
      <dc:date>2023-12-13T06:33:59Z</dc:date>
    </item>
    <item>
      <title>Re: Can I have a slider in the report view change data in the Table view</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-I-have-a-slider-in-the-report-view-change-data-in-the-Table/m-p/3581171#M138139</link>
      <description>&lt;P&gt;Yes, you can achieve this in Power BI by creating a parameter and using it in calculated columns or measures that are then used in your table matrix. Here's a general outline of how you can set this up:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Create a Parameter:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Go to the "Home" tab in Power BI Desktop.&lt;/LI&gt;&lt;LI&gt;Click on "New Source" and select "Parameter."&lt;/LI&gt;&lt;LI&gt;Define your parameter with a name (e.g., WeightParameter) and set the data type to Decimal.&lt;/LI&gt;&lt;LI&gt;Define the minimum, maximum, and default values for your parameter.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Create Calculated Columns or Measures:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;For each column that you want to be affected by the slider, create calculated columns or measures that use the parameter.&lt;/LI&gt;&lt;LI&gt;For example, if you have a column A, create a calculated column like this:&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Standardized_Column_A = YourTable[Column_A] * YourParameter[WeightParameter]&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;UL&gt;&lt;LI&gt;Repeat this for other columns.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Create a Hierarchy or Dependency:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Ensure that your columns are organized in a way that reflects the dependency. For example, Standardized columns depend on the original columns, and Relative Columns depend on Standardized columns.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Use the Calculated Columns/Measures in the Table Matrix:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Build your table matrix and use the calculated columns or measures in the appropriate places.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Create Relationships:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;If needed, create relationships between tables to ensure proper filtering.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Add the Parameter Slider to the Report:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Add the parameter slider to your report.&lt;/LI&gt;&lt;LI&gt;Use the "WeightParameter" in your calculations.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;STRONG&gt;Test the Slider:&lt;/STRONG&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Test the slider by adjusting the parameter value and observe the trickle-down effect on your table matrix.&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Make sure that you have a clear understanding of your data model and the relationships between tables. If your calculations involve complex logic, you might need to write more sophisticated DAX expressions.&lt;/P&gt;&lt;P&gt;Additionally, Power BI's community forums and documentation are valuable resources where you can find examples and ask specific questions related to your scenario.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If this post&amp;nbsp;helps, then please consider&amp;nbsp;Accepting it as the solution&amp;nbsp;to help the other members find it more quickly.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;In case there is still a problem, please feel free and explain your issue in detail,&amp;nbsp;It will be my pleasure to assist you in any way I can.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 13 Dec 2023 06:34:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Can-I-have-a-slider-in-the-report-view-change-data-in-the-Table/m-p/3581171#M138139</guid>
      <dc:creator>123abc</dc:creator>
      <dc:date>2023-12-13T06:34:00Z</dc:date>
    </item>
  </channel>
</rss>

