<?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 ADDING COLUMN VALUES TO SELECTED PARAMETER in Custom Visuals Development Discussion</title>
    <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/ADDING-COLUMN-VALUES-TO-SELECTED-PARAMETER/m-p/3094720#M6933</link>
    <description>&lt;P&gt;Hello All,&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have one question and i am not sure is it possible in power bi or not.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There is a column of user name in table and i want to specify some criteria to it based on user selection.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Eg. Column name is user name and i have created one table name Selection.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to add user name to selection which i have made.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Suppose username is Cat and in selection there are 2 dropdowns Animal and Not animal.&lt;/P&gt;&lt;P&gt;So if someone selects Animal then value sholud be added to animal field in selection.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In this way i want dynamic value based on selection ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PLEASE HELP, IF WE CAN APPLY THIS IN POWER BI OR THERE ARE SOME OTHER WAYS TO ACHIEVE.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
    <pubDate>Thu, 23 Feb 2023 07:09:14 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2023-02-23T07:09:14Z</dc:date>
    <item>
      <title>ADDING COLUMN VALUES TO SELECTED PARAMETER</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/ADDING-COLUMN-VALUES-TO-SELECTED-PARAMETER/m-p/3094720#M6933</link>
      <description>&lt;P&gt;Hello All,&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have one question and i am not sure is it possible in power bi or not.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;There is a column of user name in table and i want to specify some criteria to it based on user selection.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Eg. Column name is user name and i have created one table name Selection.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to add user name to selection which i have made.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Suppose username is Cat and in selection there are 2 dropdowns Animal and Not animal.&lt;/P&gt;&lt;P&gt;So if someone selects Animal then value sholud be added to animal field in selection.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In this way i want dynamic value based on selection ,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PLEASE HELP, IF WE CAN APPLY THIS IN POWER BI OR THERE ARE SOME OTHER WAYS TO ACHIEVE.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 23 Feb 2023 07:09:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/ADDING-COLUMN-VALUES-TO-SELECTED-PARAMETER/m-p/3094720#M6933</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-02-23T07:09:14Z</dc:date>
    </item>
    <item>
      <title>Re: ADDING COLUMN VALUES TO SELECTED PARAMETER</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/ADDING-COLUMN-VALUES-TO-SELECTED-PARAMETER/m-p/3100980#M6963</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;Hi!&lt;/P&gt;
&lt;P&gt;Yes, it is possible to achieve the functionality you described in Power BI. You can use a combination of slicers and calculated columns to add the username to a specific category based on user selection.&lt;/P&gt;
&lt;P&gt;Here are the steps you can follow:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;
&lt;P&gt;Create a slicer for the "User Name" column in your table.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Create two additional slicers for the "Animal" and "Not Animal" categories.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Add a new calculated column to your table using the DAX formula:Category = &lt;BR /&gt;IF(&lt;BR /&gt;SELECTEDVALUE('Selection'[Animal]) = "Animal",&lt;BR /&gt;"Animal",&lt;BR /&gt;IF(&lt;BR /&gt;SELECTEDVALUE('Selection'[Not Animal]) = "Not Animal",&lt;BR /&gt;"Not Animal",&lt;BR /&gt;BLANK()&lt;BR /&gt;)&lt;BR /&gt;)&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;Add the new "Category" column to your table visual.&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;When a user selects a username in the "User Name" slicer, they can also select either "Animal" or "Not Animal" from the corresponding slicer to assign the user to the selected category.BBF&lt;/P&gt;
&lt;/LI&gt;
&lt;/OL&gt;</description>
      <pubDate>Mon, 27 Feb 2023 09:34:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/ADDING-COLUMN-VALUES-TO-SELECTED-PARAMETER/m-p/3100980#M6963</guid>
      <dc:creator>BeaBF</dc:creator>
      <dc:date>2023-02-27T09:34:47Z</dc:date>
    </item>
    <item>
      <title>Re: ADDING COLUMN VALUES TO SELECTED PARAMETER</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/ADDING-COLUMN-VALUES-TO-SELECTED-PARAMETER/m-p/3101227#M6965</link>
      <description>&lt;P&gt;Thank you&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="202311" data-lia-user-login="BeaBF" class="lia-mention lia-mention-user"&gt;BeaBF&lt;/a&gt;&amp;nbsp;for your response.&lt;/P&gt;&lt;P&gt;&amp;nbsp;I have tried what you have said above, but i am not getting the desired output. It would be great if you can share sample file.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Feb 2023 11:14:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/ADDING-COLUMN-VALUES-TO-SELECTED-PARAMETER/m-p/3101227#M6965</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-02-27T11:14:33Z</dc:date>
    </item>
  </channel>
</rss>

