<?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 DAX Formula to capture Total Sales vs. Target Goal to get % Achieved in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-to-capture-Total-Sales-vs-Target-Goal-to-get/m-p/4610281#M176476</link>
    <description>&lt;P&gt;Help! I am trying to get the % of Goal Achieved, but the result of my calculation is giving me a whacked out %.&amp;nbsp; What is causing this?&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;</description>
    <pubDate>Fri, 14 Mar 2025 13:15:01 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2025-03-14T13:15:01Z</dc:date>
    <item>
      <title>DAX Formula to capture Total Sales vs. Target Goal to get % Achieved</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-to-capture-Total-Sales-vs-Target-Goal-to-get/m-p/4610281#M176476</link>
      <description>&lt;P&gt;Help! I am trying to get the % of Goal Achieved, but the result of my calculation is giving me a whacked out %.&amp;nbsp; What is causing this?&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;</description>
      <pubDate>Fri, 14 Mar 2025 13:15:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-to-capture-Total-Sales-vs-Target-Goal-to-get/m-p/4610281#M176476</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-03-14T13:15:01Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Formula to capture Total Sales vs. Target Goal to get % Achieved</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-to-capture-Total-Sales-vs-Target-Goal-to-get/m-p/4610288#M176478</link>
      <description>&lt;P&gt;Anonymous&lt;/LI-USER&gt;&amp;nbsp;To calculate the percentage of goal achieved for each row, you can use calculated column instead of a measure&lt;/P&gt;
&lt;P&gt;% Achieved = DIVIDE('System Users'[Total Est. Share], 'System Users'[Target], 0) * 100&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to use a measure, ensure that the context is correctly set. Here’s a revised measure that should work correctly in a table or matrix visualization:&lt;/P&gt;
&lt;P&gt;% Achieved = &lt;BR /&gt;VAR TotalEstShare = SUM('System Users'[Total Est. Share])&lt;BR /&gt;VAR Target = SUM('System Users'[Target])&lt;BR /&gt;RETURN DIVIDE(TotalEstShare, Target, 0) * 100&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2025 13:18:12 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-to-capture-Total-Sales-vs-Target-Goal-to-get/m-p/4610288#M176478</guid>
      <dc:creator>bhanu_gautam</dc:creator>
      <dc:date>2025-03-14T13:18:12Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Formula to capture Total Sales vs. Target Goal to get % Achieved</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-to-capture-Total-Sales-vs-Target-Goal-to-get/m-p/4610649#M176488</link>
      <description>&lt;P&gt;Unfortunately, this gave me the same exact result. It produces 3400% for each person.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could this be a relationship issue?&amp;nbsp; I did bring over the estimated share and target columns from other tables.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2025 17:02:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-to-capture-Total-Sales-vs-Target-Goal-to-get/m-p/4610649#M176488</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-03-14T17:02:48Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Formula to capture Total Sales vs. Target Goal to get % Achieved</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-to-capture-Total-Sales-vs-Target-Goal-to-get/m-p/4610670#M176491</link>
      <description>&lt;P&gt;Hi&amp;nbsp;Anonymous&lt;/LI-USER&gt;&amp;nbsp;please try this&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;% Achieved =&lt;BR /&gt;SUMX(&lt;BR /&gt;'System Users',&lt;BR /&gt;DIVIDE('System Users'[Total Est. Share], 'System Users'[Target], 0) * 100&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2025 17:16:46 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-to-capture-Total-Sales-vs-Target-Goal-to-get/m-p/4610670#M176491</guid>
      <dc:creator>techies</dc:creator>
      <dc:date>2025-03-14T17:16:46Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Formula to capture Total Sales vs. Target Goal to get % Achieved</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-to-capture-Total-Sales-vs-Target-Goal-to-get/m-p/4610724#M176493</link>
      <description>&lt;P&gt;Unfortunately, that didn't work either.&amp;nbsp; Different result, but still wacked.&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2025 18:06:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-to-capture-Total-Sales-vs-Target-Goal-to-get/m-p/4610724#M176493</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-03-14T18:06:26Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Formula to capture Total Sales vs. Target Goal to get % Achieved</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-to-capture-Total-Sales-vs-Target-Goal-to-get/m-p/4610991#M176497</link>
      <description>&lt;P&gt;What is the measurement you are try to made, it is not clear? Your % are massive because you * 100.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;DIVIDE(
    'System Users'[Total Est Share],
    'System Users'[Target]
    ,0
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or are you looking for the overall % achieved&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;DIVIDE(
    sum( 'System Users'[Total Est Share] ),
    sum ('System Users'[Target] )
    ,0
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Mar 2025 22:21:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-to-capture-Total-Sales-vs-Target-Goal-to-get/m-p/4610991#M176497</guid>
      <dc:creator>Deku</dc:creator>
      <dc:date>2025-03-14T22:21:18Z</dc:date>
    </item>
    <item>
      <title>Re: DAX Formula to capture Total Sales vs. Target Goal to get % Achieved</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-to-capture-Total-Sales-vs-Target-Goal-to-get/m-p/4612765#M176539</link>
      <description>&lt;P&gt;Thank you, I actually figured it out on Friday.&amp;nbsp; I had to change it from % to whole number.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Mar 2025 12:09:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/DAX-Formula-to-capture-Total-Sales-vs-Target-Goal-to-get/m-p/4612765#M176539</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-03-17T12:09:45Z</dc:date>
    </item>
  </channel>
</rss>

