<?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 Need help on dax measure in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-dax-measure/m-p/4746829#M181784</link>
    <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;Good day,&lt;/P&gt;&lt;P&gt;I need dax measure for Totalexceededcalls&amp;nbsp;&lt;/P&gt;&lt;P&gt;Totalexceededcalls=anycall made morethan total target calls&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 27 Jun 2025 16:08:34 GMT</pubDate>
    <dc:creator>Pmrs</dc:creator>
    <dc:date>2025-06-27T16:08:34Z</dc:date>
    <item>
      <title>Need help on dax measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-dax-measure/m-p/4746829#M181784</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;&lt;P&gt;Good day,&lt;/P&gt;&lt;P&gt;I need dax measure for Totalexceededcalls&amp;nbsp;&lt;/P&gt;&lt;P&gt;Totalexceededcalls=anycall made morethan total target calls&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jun 2025 16:08:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-dax-measure/m-p/4746829#M181784</guid>
      <dc:creator>Pmrs</dc:creator>
      <dc:date>2025-06-27T16:08:34Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on dax measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-dax-measure/m-p/4746943#M181786</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1297494" data-lia-user-login="Pmrs" class="lia-mention lia-mention-user"&gt;Pmrs&lt;/a&gt;&amp;nbsp;As a calculated column this would be:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Column = MAX( [Totaltargetcalls] - [Total calls], 0 )&lt;/LI-CODE&gt;</description>
      <pubDate>Fri, 27 Jun 2025 18:32:24 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-dax-measure/m-p/4746943#M181786</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2025-06-27T18:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on dax measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-dax-measure/m-p/4747949#M181817</link>
      <description>&lt;P&gt;Hi&amp;nbsp; &lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1297494" data-lia-user-login="Pmrs" class="lia-mention lia-mention-user"&gt;Pmrs&lt;/a&gt;&amp;nbsp;, &lt;BR /&gt;Thanks for reaching out to the Microsoft fabric community forum.&lt;BR /&gt;&lt;BR /&gt;I have used this DAX formula to generate TotalExceededCalls &lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;TotalExceededCalls =

SUMX (

    ADDCOLUMNS (

        VALUES ( Target[rep] ),

        "ExceededFlag",

            IF (

                CALCULATE(SUM(Target[Total calls])) &amp;gt; CALCULATE(SUM(Target[Totaltarget])),

                1,

                0

            )

    ),

    [ExceededFlag]

)


&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;This is the generated output:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Uploaded the .PBIX file for reference as well.&lt;BR /&gt;&lt;BR /&gt;If this post&amp;nbsp;helps, then please consider&amp;nbsp;Accepting as solution&amp;nbsp;to help the other members find it more quickly and consider giving a&amp;nbsp;KUDOS.&amp;nbsp;Feel free to reach out if you need further assistance.&lt;BR /&gt;Thank you&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jul 2025 18:08:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-dax-measure/m-p/4747949#M181817</guid>
      <dc:creator>v-nmadadi-msft</dc:creator>
      <dc:date>2025-07-01T18:08:33Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on dax measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-dax-measure/m-p/4748236#M181825</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your response.&lt;/P&gt;&lt;P&gt;The output should be total exceeded calls. If a rep exceeds total target calls ex: target call is 100&lt;/P&gt;&lt;P&gt;And a rep exceeds 3 calls then the output should be 103 not as a flag 0 or 1. Could you please help on this&lt;/P&gt;</description>
      <pubDate>Mon, 30 Jun 2025 10:13:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-dax-measure/m-p/4748236#M181825</guid>
      <dc:creator>Pmrs</dc:creator>
      <dc:date>2025-06-30T10:13:59Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on dax measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-dax-measure/m-p/4750060#M181882</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1297494" target="_self"&gt;&lt;SPAN class=""&gt;Pmrs&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;please can you clarify if you need a measure or a calculated column?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As a measure&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;SUMX (&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Table,&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;IF (&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Table[TotalCalls] &amp;gt; Table[TargetCalls],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;Table[TotalCalls] - Table[TargetCalls]&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; )&lt;BR /&gt;)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;as a column&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;IF (&amp;nbsp;&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Table[TotalCalls] &amp;gt; Table[TargetCalls],&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;Table[TotalCalls] - Table[TargetCalls]&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; )&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this helped, please consider giving kudos and mark as a solution&lt;/P&gt;&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="273" data-lia-user-login="me" class="lia-mention lia-mention-user"&gt;me&lt;/a&gt; in replies or I'll lose your thread&lt;/P&gt;&lt;P&gt;consider voting &lt;A href="https://community.fabric.microsoft.com/t5/Fabric-Ideas/Power-BI-Filter-Pane-as-an-icon-on-the-right-side-bar-in-on/idi-p/4728588" target="_blank" rel="noopener"&gt;this Power BI idea&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Francesco Bergamaschi&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;MBA, M.Eng, M.Econ, Professor of BI&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jul 2025 18:01:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-dax-measure/m-p/4750060#M181882</guid>
      <dc:creator>FBergamaschi</dc:creator>
      <dc:date>2025-07-01T18:01:28Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on dax measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-dax-measure/m-p/4750083#M181884</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1287762" data-lia-user-login="FBergamaschi" class="lia-mention lia-mention-user"&gt;FBergamaschi&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;Updated the dax as per the requirement&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;TotalExceededCalls = 
SUMX (
    ADDCOLUMNS (
        VALUES ( Target[rep] ),
        "ExceededFlag",
            IF (
                CALCULATE(SUM(Target[Total calls])) &amp;gt; CALCULATE(SUM(Target[Totaltarget])),
                CALCULATE(SUM(Target[Total calls])) - CALCULATE(SUM(Target[Totaltarget])),
                0
            )
    ),
    [ExceededFlag]
)
&lt;/LI-CODE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;here is the corrected output&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If this post&amp;nbsp;helps, then please consider&amp;nbsp;Accepting as solution&amp;nbsp;to help the other members find it more quickly and consider giving a&amp;nbsp;KUDOS.&amp;nbsp;Feel free to reach out if you need further assistance.&lt;BR /&gt;Thank you&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 01 Jul 2025 18:23:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-dax-measure/m-p/4750083#M181884</guid>
      <dc:creator>v-nmadadi-msft</dc:creator>
      <dc:date>2025-07-01T18:23:47Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on dax measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-dax-measure/m-p/4752892#M181969</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1297494" data-lia-user-login="Pmrs" class="lia-mention lia-mention-user"&gt;Pmrs&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;May I ask if you have resolved this issue? If not,&amp;nbsp;&lt;/SPAN&gt;Please feel free to contact us if you have any further questions.&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 04 Jul 2025 04:45:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-dax-measure/m-p/4752892#M181969</guid>
      <dc:creator>v-nmadadi-msft</dc:creator>
      <dc:date>2025-07-04T04:45:06Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on dax measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-dax-measure/m-p/4754843#M182055</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1297494" data-lia-user-login="Pmrs" class="lia-mention lia-mention-user"&gt;Pmrs&lt;/a&gt;&amp;nbsp;,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I wanted to check if you had the opportunity to review the information provided. Please feel free to contact us if you have any further questions. &lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jul 2025 08:42:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-dax-measure/m-p/4754843#M182055</guid>
      <dc:creator>v-nmadadi-msft</dc:creator>
      <dc:date>2025-07-07T08:42:48Z</dc:date>
    </item>
    <item>
      <title>Re: Need help on dax measure</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-dax-measure/m-p/4758874#M182235</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1297494" data-lia-user-login="Pmrs" class="lia-mention lia-mention-user"&gt;Pmrs&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;As we haven’t heard back from you, we wanted to kindly follow up to check if the solution provided by the community members for the issue worked. Please do let us know if you have any further queries.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks and regards&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Jul 2025 11:43:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-help-on-dax-measure/m-p/4758874#M182235</guid>
      <dc:creator>v-nmadadi-msft</dc:creator>
      <dc:date>2025-07-10T11:43:52Z</dc:date>
    </item>
  </channel>
</rss>

