<?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: power bi in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/power-bi/m-p/3551488#M136624</link>
    <description>&lt;P&gt;I dont know what data available in your tables, but the concept is to identify an index column or create a new one. then make a calculated column to to flag 10%, 20% ...... of the rows. thats it..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;for common in the table, I need to understand what data inside.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 24 Nov 2023 19:28:18 GMT</pubDate>
    <dc:creator>Rupak_bi</dc:creator>
    <dc:date>2023-11-24T19:28:18Z</dc:date>
    <item>
      <title>power bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/power-bi/m-p/3549389#M136514</link>
      <description>&lt;P&gt;Hi&lt;BR /&gt;Can anyone help me to solve prb in power bi.&lt;BR /&gt;1st part&lt;BR /&gt;I need to find the percentages like 10%,20%....100% of total row count of a table and the percentages should be shown in slicer so that when I click on 10% .... 100% in slicer it will give me the result 10% of total row count and here there are 4tables which should have 4 different slicer.&lt;BR /&gt;2nd part&lt;BR /&gt;After creating 4slicer and 4table which will work each individually then I need to find the common values between the 4 tables. For example - suppose when I select 10% in fst slicer 20% in second 30% in third and 40% in fourth I should have another table visual where it give me only the common values between the 4table of 10,20,30,40% so that I will get 4tables where I will get individual count according to the percentage and at the same time another table will be showing only the common values between the 4 table&lt;BR /&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 23 Nov 2023 15:34:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/power-bi/m-p/3549389#M136514</guid>
      <dc:creator>rupak_12</dc:creator>
      <dc:date>2023-11-23T15:34:11Z</dc:date>
    </item>
    <item>
      <title>Re: power bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/power-bi/m-p/3551488#M136624</link>
      <description>&lt;P&gt;I dont know what data available in your tables, but the concept is to identify an index column or create a new one. then make a calculated column to to flag 10%, 20% ...... of the rows. thats it..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;for common in the table, I need to understand what data inside.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Nov 2023 19:28:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/power-bi/m-p/3551488#M136624</guid>
      <dc:creator>Rupak_bi</dc:creator>
      <dc:date>2023-11-24T19:28:18Z</dc:date>
    </item>
    <item>
      <title>Re: power bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/power-bi/m-p/3553439#M136726</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="651013" data-lia-user-login="rupak_12" class="lia-mention lia-mention-user"&gt;rupak_12&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;There are solutions to your first question:&lt;BR /&gt;My test data is as follows:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Adding an Index Column to Each Data Table in Power Query&amp;nbsp;and use the following DAX to calculate the number of rows per row as a percentage of the total number of rows:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Percentage = 
'Table1'[Index] / CALCULATE(COUNT('Table1'[data1]),ALL('Table1'))&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Use the following DAX to create a metric for each data table:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure1 = 
IF(
    MAX('Table1'[Percentage]) &amp;lt;= SELECTEDVALUE(MyColumn[Value]), "SHOW", "HIDE")&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Select the visual object and do the following in "Filters on this visual":&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;The same as the second visual object and the output is like below:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Then configure the slicer scope as follows:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;The final results are as follows:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Dino Tao&lt;BR /&gt;If this post &lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider &lt;EM&gt;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&lt;/EM&gt; to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2023 07:50:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/power-bi/m-p/3553439#M136726</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-11-27T07:50:15Z</dc:date>
    </item>
    <item>
      <title>Re: power bi</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/power-bi/m-p/3553453#M136727</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="651013" data-lia-user-login="rupak_12" class="lia-mention lia-mention-user"&gt;rupak_12&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;Sorry for the extra screenshot, this one doesn't work so please ignore it!&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;Dino Tao&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2023 07:47:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/power-bi/m-p/3553453#M136727</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2023-11-27T07:47:43Z</dc:date>
    </item>
  </channel>
</rss>

