<?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: Multiple row and Column Add up (Remove Duplicates) in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiple-row-and-Column-Add-up-Remove-Duplicates/m-p/2951692#M97895</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for your reply, this worked perfectly! I have noticed that it has affected one of my other visuals which I was showing a top level view for the training records. Please see below. (The top visual.)&lt;/P&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;Is there a way to make the data from the previous solution work in such a view?&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 06 Dec 2022 14:20:15 GMT</pubDate>
    <dc:creator>Altonga</dc:creator>
    <dc:date>2022-12-06T14:20:15Z</dc:date>
    <item>
      <title>Multiple row and Column Add up (Remove Duplicates)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiple-row-and-Column-Add-up-Remove-Duplicates/m-p/2951292#M97846</link>
      <description>&lt;P&gt;I am currently working on a project using a grading system and want to display total% of an individuals skillset. The grading system works using the below image (I've only used my own test ID but in the data set it is showing all 930).&lt;/P&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;Scenario 1 = 10%, Scenario 2 = 20%, Scenario 3 = 30% and Task 1 + Task 2 both give 20% each resulting in the individual being 100% trained. The main issue with this is that the user can have multiple entries for each header, resulting in the total% being over 100% in some cases.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a measure that can be implemented to just look at each of these columns and just take one entry from each and ignore duplicates while adding up to a max of 100%? Happy to give more details.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Dec 2022 11:41:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiple-row-and-Column-Add-up-Remove-Duplicates/m-p/2951292#M97846</guid>
      <dc:creator>Altonga</dc:creator>
      <dc:date>2022-12-06T11:41:41Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple row and Column Add up (Remove Duplicates)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiple-row-and-Column-Add-up-Remove-Duplicates/m-p/2951373#M97858</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="482408" data-lia-user-login="Altonga" class="lia-mention lia-mention-user"&gt;Altonga&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;You can try the following&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;%Trained =
MAX ( 'Table'[Scenario1%] ) + MAX ( 'Table'[Scenario2%] )
    + MAX ( 'Table'[Scenario3%] )
    + MAX ( 'Table'[Task1%] )
    + MAX ( 'Table'[Task1%] )&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 06 Dec 2022 12:29:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiple-row-and-Column-Add-up-Remove-Duplicates/m-p/2951373#M97858</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-12-06T12:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple row and Column Add up (Remove Duplicates)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiple-row-and-Column-Add-up-Remove-Duplicates/m-p/2951692#M97895</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you so much for your reply, this worked perfectly! I have noticed that it has affected one of my other visuals which I was showing a top level view for the training records. Please see below. (The top visual.)&lt;/P&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;Is there a way to make the data from the previous solution work in such a view?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 06 Dec 2022 14:20:15 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiple-row-and-Column-Add-up-Remove-Duplicates/m-p/2951692#M97895</guid>
      <dc:creator>Altonga</dc:creator>
      <dc:date>2022-12-06T14:20:15Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple row and Column Add up (Remove Duplicates)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiple-row-and-Column-Add-up-Remove-Duplicates/m-p/2951746#M97901</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="482408" data-lia-user-login="Altonga" class="lia-mention lia-mention-user"&gt;Altonga&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you please explain further?&lt;/P&gt;</description>
      <pubDate>Tue, 06 Dec 2022 14:35:44 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiple-row-and-Column-Add-up-Remove-Duplicates/m-p/2951746#M97901</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-12-06T14:35:44Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple row and Column Add up (Remove Duplicates)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiple-row-and-Column-Add-up-Remove-Duplicates/m-p/2951747#M97902</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="482408" data-lia-user-login="Altonga" class="lia-mention lia-mention-user"&gt;Altonga&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you please explain further?&lt;/P&gt;</description>
      <pubDate>Tue, 06 Dec 2022 14:35:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiple-row-and-Column-Add-up-Remove-Duplicates/m-p/2951747#M97902</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-12-06T14:35:46Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple row and Column Add up (Remove Duplicates)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiple-row-and-Column-Add-up-Remove-Duplicates/m-p/2952042#M97933</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="317289" data-lia-user-login="tamerj1" class="lia-mention lia-mention-user"&gt;tamerj1&lt;/a&gt;&amp;nbsp;, So If there was some way to use the data created from the measure you helped me with before to display on a visual somewhat to the above image? Showing the number of indiviuals who have acheived either 10%, 20% and so on. Apologise if not clear I'm having a hard time explaining it myself haha.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Dec 2022 16:59:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiple-row-and-Column-Add-up-Remove-Duplicates/m-p/2952042#M97933</guid>
      <dc:creator>Altonga</dc:creator>
      <dc:date>2022-12-06T16:59:30Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple row and Column Add up (Remove Duplicates)</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiple-row-and-Column-Add-up-Remove-Duplicates/m-p/2952113#M97938</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="482408" data-lia-user-login="Altonga" class="lia-mention lia-mention-user"&gt;Altonga&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;manually insert a single column table that contains the values you want to slice by, for example 0.1, 0.2, 0.3, etc.. let's call it Scores[Score]. This single column table shall remain disconnected from the main table or sny other table you have in your data model.&amp;nbsp;&lt;BR /&gt;now you can use the following measure in a stacked column column chart were Scores[Score] is on the x-axis and the subject is on the legend&lt;/P&gt;
&lt;P&gt;SMX ( IF [%Trained] = SELECTEDVALUE ( Scores[Score] ), 1 )&lt;/P&gt;</description>
      <pubDate>Tue, 06 Dec 2022 17:27:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Multiple-row-and-Column-Add-up-Remove-Duplicates/m-p/2952113#M97938</guid>
      <dc:creator>tamerj1</dc:creator>
      <dc:date>2022-12-06T17:27:31Z</dc:date>
    </item>
  </channel>
</rss>

