<?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: How to calculate the Overall Status from Duplicate rows in PowerBI in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-the-Overall-Status-from-Duplicate-rows-in/m-p/937769#M9863</link>
    <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="82403" data-lia-user-login="az38" class="lia-mention lia-mention-user"&gt;az38&lt;/a&gt;&amp;nbsp; thanks this Helps ! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 18 Feb 2020 19:14:34 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-02-18T19:14:34Z</dc:date>
    <item>
      <title>How to calculate the Overall Status from Duplicate rows in PowerBI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-the-Overall-Status-from-Duplicate-rows-in/m-p/928987#M9495</link>
      <description>&lt;P&gt;I want to calculate the overall status of the filed based on status avaialble in different column in the data table&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sample Data&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Compliance Control Description&lt;/TD&gt;&lt;TD&gt;State&lt;/TD&gt;&lt;TD&gt;Compliance Control&lt;/TD&gt;&lt;TD&gt;subscription ID&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;VM Backup&lt;/TD&gt;&lt;TD&gt;Pass&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;VM Backup&lt;/TD&gt;&lt;TD&gt;Fail&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;VM Backup&lt;/TD&gt;&lt;TD&gt;Skipped&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Pacthing&lt;/TD&gt;&lt;TD&gt;Pass&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Pacthing&lt;/TD&gt;&lt;TD&gt;Fail&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For eg .&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;If any one of the value for VM backups Fail or skipped then the overall status should be "Fail"&lt;/P&gt;&lt;P&gt;I want to calculate the overall status of "VM Backup" as "Fail" because one of the value in State cloum is falied for VM backup.Please assist&lt;/P&gt;</description>
      <pubDate>Tue, 11 Feb 2020 19:05:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-the-Overall-Status-from-Duplicate-rows-in/m-p/928987#M9495</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-11T19:05:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate the Overall Status from Duplicate rows in PowerBI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-the-Overall-Status-from-Duplicate-rows-in/m-p/928999#M9496</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if i understand you correct try a measure&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Overall Status = 
var _countFails = CALCULATE(COUNTROWS('Table'),ALLEXCEPT('Table','Table'[Compliance Control]),OR('Table'[State]="Fail",'Table'[State]="Skipped"))
return
IF(_countFails&amp;gt;0,"Fail","OK")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;I&gt;&lt;FONT color="#ababab"&gt;do not hesitate to give a kudo to useful posts and mark solutions as solution&lt;/FONT&gt;&lt;/I&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://linkedin.com/in/alekseizhukov" target="_blank"&gt;LinkedIn&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Feb 2020 19:14:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-the-Overall-Status-from-Duplicate-rows-in/m-p/928999#M9496</guid>
      <dc:creator>az38</dc:creator>
      <dc:date>2020-02-11T19:14:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate the Overall Status from Duplicate rows in PowerBI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-the-Overall-Status-from-Duplicate-rows-in/m-p/929038#M9497</link>
      <description>&lt;P&gt;Thanks &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="82403" data-lia-user-login="az38" class="lia-mention lia-mention-user"&gt;az38&lt;/a&gt;&amp;nbsp; this really helps to get the overall status.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also can we calculate the count of how many are passed and how many are skipped / failed &amp;nbsp;based on the overall status and Compliance Control.&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Compliance Control Description&lt;/TD&gt;&lt;TD&gt;State&lt;/TD&gt;&lt;TD&gt;Compliance Control&lt;/TD&gt;&lt;TD&gt;subscription ID&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;VM Backup&lt;/TD&gt;&lt;TD&gt;Pass&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;VM Backup&lt;/TD&gt;&lt;TD&gt;Fail&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;VM Backup&lt;/TD&gt;&lt;TD&gt;Skipped&lt;/TD&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;3&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Pacthing&lt;/TD&gt;&lt;TD&gt;Pass&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Pacthing&lt;/TD&gt;&lt;TD&gt;Pass&lt;/TD&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;2&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;Like for Eg in the sample Data&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;VM Backup&amp;nbsp; = Failed (because for one subscription it failed)&lt;/P&gt;&lt;P&gt;Patching&amp;nbsp; = Passed&amp;nbsp; ( for all it passed)&lt;/P&gt;&lt;P&gt;So For Complaince Control A it shows 1 passed and 1 failed&lt;/P&gt;&lt;P&gt;Out put like&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Compliance Control&lt;/TD&gt;&lt;TD&gt;Passed Description&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;A&lt;/TD&gt;&lt;TD&gt;0&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;B&lt;/TD&gt;&lt;TD&gt;1&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a huge data set and I want to bascically plot in a Bar Graph on&lt;/P&gt;&lt;P&gt;How many unique control description passed for a given complinace control and out of total unique control description&amp;nbsp;for a given complince&lt;/P&gt;&lt;P&gt;Note the table as duplicate enties for a given Compliance Control Description.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Feb 2020 19:55:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-the-Overall-Status-from-Duplicate-rows-in/m-p/929038#M9497</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-11T19:55:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate the Overall Status from Duplicate rows in PowerBI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-the-Overall-Status-from-Duplicate-rows-in/m-p/929049#M9499</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i do not understand how do you get&amp;nbsp;&lt;SPAN&gt;Passed Description=1 for B ? is it count of unique descriptions?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;I&gt;&lt;FONT color="#ababab"&gt;do not hesitate to give a kudo to useful posts and mark solutions as solution&lt;/FONT&gt;&lt;/I&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 11 Feb 2020 20:07:38 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-the-Overall-Status-from-Duplicate-rows-in/m-p/929049#M9499</guid>
      <dc:creator>az38</dc:creator>
      <dc:date>2020-02-11T20:07:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate the Overall Status from Duplicate rows in PowerBI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-the-Overall-Status-from-Duplicate-rows-in/m-p/935385#M9747</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="82403" data-lia-user-login="az38" class="lia-mention lia-mention-user"&gt;az38&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes it is the unique for the description. So If all State is Passed it should mark the description as Passed and I want to calcualte the total Passed/Failed description.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Data set is big so I have shared the smaller eg. Please assist . Thanks&lt;/P&gt;</description>
      <pubDate>Mon, 17 Feb 2020 10:44:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-the-Overall-Status-from-Duplicate-rows-in/m-p/935385#M9747</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-17T10:44:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate the Overall Status from Duplicate rows in PowerBI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-the-Overall-Status-from-Duplicate-rows-in/m-p/935419#M9750</link>
      <description>&lt;P&gt;If you want the overall status in a new calculated column:&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;OverallStatus =&lt;BR /&gt;IF(COUNTROWS(&lt;BR /&gt;&amp;nbsp;&amp;nbsp; FILTER(ALL('Table'), [Compliance Control Description] = EARLIER([Compliance Control Description])&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &amp;amp;&amp;amp; [State] IN { "Fail", "Skipped"} ) &amp;gt; 0, "Failed", "Not failed")&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;You can then use SUMMARIZE to group by Compliance Control Description / OverallStatus and count the ones failed.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Feb 2020 11:03:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-the-Overall-Status-from-Duplicate-rows-in/m-p/935419#M9750</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-17T11:03:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate the Overall Status from Duplicate rows in PowerBI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-the-Overall-Status-from-Duplicate-rows-in/m-p/937706#M9858</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp; Getting the Error "Parameter is not the correct Type" &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="82403" data-lia-user-login="az38" class="lia-mention lia-mention-user"&gt;az38&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Adding the Data from the actual table for referance . Here I need to idetify the overall status as Failled, Passed , Skipped for Distinct Content.RegulatoryComplianceDescription.&lt;/P&gt;&lt;P&gt;If any RegulatoryComplianceDescription is Failing or any one row . it should show the Overall status as Failed . Similarly if all Passed then OverAll Status as Passed .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Then need to count all Passed and Failed .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Please help . Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;TABLE border="1" cellspacing="0" cellpadding="0"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;Content.RegulatoryComplianceControlPassedAssessments&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Content.RegulatoryComplianceControlState&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Content.RegulatoryComplianceControlDescription&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Content.RegulatoryComplianceControlName&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Content.RegulatoryComplianceStandardName&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Content.RegulatoryComplianceControlFailedAssessments&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Content.RegulatoryComplianceControlSkippedAssessments&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Skipped&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Access to all audit trails&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;10.2.3&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;PCI-DSS-3.2.1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;66&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;66&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Passed&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Access to all audit trails&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;10.2.3&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;PCI-DSS-3.2.1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;59&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Failed&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Access to all audit trails&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;10.2.3&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;PCI-DSS-3.2.1&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;7&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;3&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Passed&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Access to confidential information from outside the boundaries of the system and disclosure of confidential information is restricted to authorized parties in accordance with confidentiality commitments and requirements.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;C1.3&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;SOC-TSP&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;47&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;47&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Failed&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Access to confidential information from outside the boundaries of the system and disclosure of confidential information is restricted to authorized parties in accordance with confidentiality commitments and requirements.&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;C1.3&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;SOC-TSP&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;3&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Failed&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Management of privileged access rights&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;A9.2.3&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;ISO-27001&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;2&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;43&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Feb 2020 18:21:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-the-Overall-Status-from-Duplicate-rows-in/m-p/937706#M9858</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-18T18:21:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate the Overall Status from Duplicate rows in PowerBI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-the-Overall-Status-from-Duplicate-rows-in/m-p/937754#M9861</link>
      <description>&lt;P&gt;Anonymous&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;you can create a calculated column, not measure&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Overall Status Column = 
var _countFails = CALCULATE(COUNTROWS('Table'),ALLEXCEPT('Table','Table'[Content.RegulatoryComplianceControlDescription]),OR('Table'[Content.RegulatoryComplianceControlState]="Failed",'Table'[Content.RegulatoryComplianceControlState]="Skipped"))
return
IF(_countFails&amp;gt;0,"Failed","OK")&lt;/LI-CODE&gt;
&lt;P&gt;then as&amp;nbsp;Anonymous&lt;/a&gt;&amp;nbsp;mentioned create a calculated table&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Table 2 = SUMMARIZE('Table', 'Table'[Overall Status Column], "Count Status", DISTINCTCOUNT('Table'[Content.RegulatoryComplianceControlDescription]))&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 18 Feb 2020 18:59:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-the-Overall-Status-from-Duplicate-rows-in/m-p/937754#M9861</guid>
      <dc:creator>az38</dc:creator>
      <dc:date>2020-02-18T18:59:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to calculate the Overall Status from Duplicate rows in PowerBI</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-the-Overall-Status-from-Duplicate-rows-in/m-p/937769#M9863</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="82403" data-lia-user-login="az38" class="lia-mention lia-mention-user"&gt;az38&lt;/a&gt;&amp;nbsp; thanks this Helps ! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 18 Feb 2020 19:14:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/How-to-calculate-the-Overall-Status-from-Duplicate-rows-in/m-p/937769#M9863</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-02-18T19:14:34Z</dc:date>
    </item>
  </channel>
</rss>

