<?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: HIT calculation for DAX calculation in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HIT-calculation-for-DAX-calculation/m-p/1257844#M20835</link>
    <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;HIT =
CALCULATE (
    COUNT ( Query1[Priority] ),
    FILTER (
        Query1,
        Query1[SLA Status] = "FULFILLED"
            &amp;amp;&amp;amp; Query1[Exempted SLA] = "N"
            &amp;amp;&amp;amp; Query1[Priority] = "PLI_NBD"
    )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;HIT =
COUNTROWS (
    FILTER (
        Query1,
        Query1[Priority] = "PLI_NBD"
            &amp;amp;&amp;amp; Query1[SLA Status] = "FULFILLED"
            &amp;amp;&amp;amp; Query1[Exempted SLA] = "N"
    )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Harsh Nathani&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)&lt;/STRONG&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 29 Jul 2020 04:29:16 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2020-07-29T04:29:16Z</dc:date>
    <item>
      <title>HIT calculation for DAX calculation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HIT-calculation-for-DAX-calculation/m-p/1257232#M20811</link>
      <description>&lt;P&gt;hii&amp;nbsp;&lt;/P&gt;&lt;P&gt;i am trying to do the hit of sla by considering 3 conditions. the output i need to get after the operation is &lt;STRONG&gt;EXEMPTED&amp;nbsp;&lt;/STRONG&gt;but i am not getting it. Previously i did using COUNTIF function in excel.&lt;/P&gt;&lt;P&gt;can someone help me&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;HIT = CALCULATE(COUNTX(Query1[Priority]= "PLI_NBD"),FILTER(Query1[SLA Status]="FULFILLED") &amp;amp;&amp;amp; (Query1[Exempted SLA]= "N"))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 28 Jul 2020 20:56:30 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HIT-calculation-for-DAX-calculation/m-p/1257232#M20811</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-28T20:56:30Z</dc:date>
    </item>
    <item>
      <title>Re: HIT calculation for DAX calculation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HIT-calculation-for-DAX-calculation/m-p/1257258#M20812</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;- See if this helps:&amp;nbsp;&lt;A href="https://community.powerbi.com/t5/Community-Blog/CO-CU-Excel-to-DAX-Translation/ba-p/1080018#M2077" target="_blank"&gt;https://community.powerbi.com/t5/Community-Blog/CO-CU-Excel-to-DAX-Translation/ba-p/1080018#M2077&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jul 2020 21:01:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HIT-calculation-for-DAX-calculation/m-p/1257258#M20812</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2020-07-28T21:01:22Z</dc:date>
    </item>
    <item>
      <title>Re: HIT calculation for DAX calculation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HIT-calculation-for-DAX-calculation/m-p/1257355#M20814</link>
      <description>&lt;P&gt;hiii greg&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;i tried using those operations but i count try to get the output.i am getting an error&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;FONT&gt;The COUNT function only accepts a column reference as an argument.&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;can you plz me to solve this&lt;/FONT&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;HIT = COUNTX(COUNT (Query1 [Priority] = "PLI_NBD" ), FILTER( Query1[SLA Status]="FULFILLED" &amp;amp;&amp;amp; Query1 [Exempted SLA]= "N"))&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 28 Jul 2020 21:46:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HIT-calculation-for-DAX-calculation/m-p/1257355#M20814</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-28T21:46:18Z</dc:date>
    </item>
    <item>
      <title>Re: HIT calculation for DAX calculation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HIT-calculation-for-DAX-calculation/m-p/1257379#M20815</link>
      <description>&lt;P&gt;Please try this approach&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;HIT =&lt;BR /&gt;CALCULATE (&lt;BR /&gt;COUNTROWS ( Query1 ),&lt;BR /&gt;Query1[Priority] = "PLI_NBD",&lt;BR /&gt;Query1[SLA Status] = "FULFILLED",&lt;BR /&gt;Query1[Exempted SLA] = "N"&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this works for you, please mark it as the solution.&amp;nbsp; Kudos are appreciated too.&amp;nbsp; Please let me know if not.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pat&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jul 2020 21:58:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HIT-calculation-for-DAX-calculation/m-p/1257379#M20815</guid>
      <dc:creator>mahoneypat</dc:creator>
      <dc:date>2020-07-28T21:58:02Z</dc:date>
    </item>
    <item>
      <title>Re: HIT calculation for DAX calculation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HIT-calculation-for-DAX-calculation/m-p/1257398#M20817</link>
      <description>&lt;P class="lia-indent-padding-left-30px"&gt;Hii mohit&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;i tried using the query u have provided its not showing any error its executed successfully but in the output its showing both exempted and unexempted .&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;can you help me with this&amp;nbsp;&lt;/P&gt;&lt;P class="lia-indent-padding-left-30px"&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jul 2020 22:14:25 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HIT-calculation-for-DAX-calculation/m-p/1257398#M20817</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-28T22:14:25Z</dc:date>
    </item>
    <item>
      <title>Re: HIT calculation for DAX calculation</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HIT-calculation-for-DAX-calculation/m-p/1257844#M20835</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;HIT =
CALCULATE (
    COUNT ( Query1[Priority] ),
    FILTER (
        Query1,
        Query1[SLA Status] = "FULFILLED"
            &amp;amp;&amp;amp; Query1[Exempted SLA] = "N"
            &amp;amp;&amp;amp; Query1[Priority] = "PLI_NBD"
    )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;HIT =
COUNTROWS (
    FILTER (
        Query1,
        Query1[Priority] = "PLI_NBD"
            &amp;amp;&amp;amp; Query1[SLA Status] = "FULFILLED"
            &amp;amp;&amp;amp; Query1[Exempted SLA] = "N"
    )
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;BR /&gt;Harsh Nathani&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Did I answer your question? Mark my post as a solution! Appreciate with a Kudos!! (Click the Thumbs Up Button)&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 29 Jul 2020 04:29:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/HIT-calculation-for-DAX-calculation/m-p/1257844#M20835</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-07-29T04:29:16Z</dc:date>
    </item>
  </channel>
</rss>

