<?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: Data Label on Graph in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Data-Label-on-Graph/m-p/4852168#M185192</link>
    <description>&lt;P&gt;So, i don't have a number column like your sales column, I just have a column of user names like this:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And to create the graph I just put the user name colum on the x and y axis to see how many each user did:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I can't sum a column of names.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 16 Oct 2025 17:52:04 GMT</pubDate>
    <dc:creator>e175429</dc:creator>
    <dc:date>2025-10-16T17:52:04Z</dc:date>
    <item>
      <title>Data Label on Graph</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Data-Label-on-Graph/m-p/4852146#M185188</link>
      <description>&lt;P&gt;Hey all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am able to get my graph to show EITHER whole numbers OR %. Is there a way to get both shown on the same graph?&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Thu, 16 Oct 2025 17:15:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Data-Label-on-Graph/m-p/4852146#M185188</guid>
      <dc:creator>e175429</dc:creator>
      <dc:date>2025-10-16T17:15:03Z</dc:date>
    </item>
    <item>
      <title>Re: Data Label on Graph</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Data-Label-on-Graph/m-p/4852152#M185190</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="531109" data-lia-user-login="e175429" class="lia-mention lia-mention-user"&gt;e175429&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Please see the attached .pbix file. You can do this by creating an additional measure and putting it in the Detail section of Data Labels on your visual. Please let me know if you have any questions about this approach.&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Oct 2025 17:36:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Data-Label-on-Graph/m-p/4852152#M185190</guid>
      <dc:creator>djurecic</dc:creator>
      <dc:date>2025-10-16T17:36:41Z</dc:date>
    </item>
    <item>
      <title>Re: Data Label on Graph</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Data-Label-on-Graph/m-p/4852155#M185191</link>
      <description>&lt;P&gt;Hi, you may use this DAX sample from my report.&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;Request Count &amp;amp; % of Total = 
VAR CurrentCount = COUNT('table'[Request ID])
VAR TotalCount = CALCULATE(
    COUNT('table'[Request ID]),
    ALLSELECTED()     --Adjust your filter modifier accordingly 
)
VAR Percentage = DIVIDE(CurrentCount, TotalCount, 0)
RETURN
CurrentCount &amp;amp; " (" &amp;amp; FORMAT(Percentage, "0.0%") &amp;amp; ")"&lt;/LI-CODE&gt;&lt;P&gt;and add it in&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Oct 2025 17:42:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Data-Label-on-Graph/m-p/4852155#M185191</guid>
      <dc:creator>MasonMA</dc:creator>
      <dc:date>2025-10-16T17:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: Data Label on Graph</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Data-Label-on-Graph/m-p/4852168#M185192</link>
      <description>&lt;P&gt;So, i don't have a number column like your sales column, I just have a column of user names like this:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And to create the graph I just put the user name colum on the x and y axis to see how many each user did:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I can't sum a column of names.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Oct 2025 17:52:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Data-Label-on-Graph/m-p/4852168#M185192</guid>
      <dc:creator>e175429</dc:creator>
      <dc:date>2025-10-16T17:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: Data Label on Graph</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Data-Label-on-Graph/m-p/4852192#M185193</link>
      <description>&lt;P&gt;Ok, that's fine. You will need to create some measures- similar to the following- use whatever your actual table and field names are.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;Count of Name =&lt;/SPAN&gt; &lt;SPAN&gt;COUNT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Names&lt;/SPAN&gt;&lt;SPAN&gt;[Name]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;Count of All Names =&lt;/SPAN&gt; &lt;SPAN&gt;COUNTROWS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;ALL&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Names&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;Percent of Total Names =&lt;/SPAN&gt; &lt;SPAN&gt;DIVIDE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[Count of Name]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;[Count of All Names]&lt;/SPAN&gt;&lt;SPAN&gt;,&lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;Then put Percent of Total Names into Data under Detail on the Data Labels section of the visual settings.&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;I've updated the .pbix file.&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Oct 2025 18:41:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Data-Label-on-Graph/m-p/4852192#M185193</guid>
      <dc:creator>djurecic</dc:creator>
      <dc:date>2025-10-16T18:41:53Z</dc:date>
    </item>
    <item>
      <title>Re: Data Label on Graph</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Data-Label-on-Graph/m-p/4852206#M185194</link>
      <description>&lt;P&gt;My measures:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;My graph:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any idea why they all say 100%?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Oct 2025 19:03:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Data-Label-on-Graph/m-p/4852206#M185194</guid>
      <dc:creator>e175429</dc:creator>
      <dc:date>2025-10-16T19:03:54Z</dc:date>
    </item>
    <item>
      <title>Re: Data Label on Graph</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Data-Label-on-Graph/m-p/4852214#M185195</link>
      <description>&lt;P&gt;You just need to add ALL() around 'individ Project2'&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;count of all =&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;COUNTROWS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;ALL&lt;/SPAN&gt;&lt;SPAN&gt;('individ Project2'&lt;/SPAN&gt;&lt;SPAN&gt;))&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://learn.microsoft.com/en-us/dax/all-function-dax" target="_blank"&gt;https://learn.microsoft.com/en-us/dax/all-function-dax&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 16 Oct 2025 19:16:16 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Data-Label-on-Graph/m-p/4852214#M185195</guid>
      <dc:creator>djurecic</dc:creator>
      <dc:date>2025-10-16T19:16:16Z</dc:date>
    </item>
    <item>
      <title>Re: Data Label on Graph</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Data-Label-on-Graph/m-p/4852235#M185197</link>
      <description>&lt;P&gt;Thank you for your assistance!&lt;/P&gt;</description>
      <pubDate>Thu, 16 Oct 2025 19:49:59 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Data-Label-on-Graph/m-p/4852235#M185197</guid>
      <dc:creator>e175429</dc:creator>
      <dc:date>2025-10-16T19:49:59Z</dc:date>
    </item>
    <item>
      <title>Re: Data Label on Graph</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Data-Label-on-Graph/m-p/4852289#M185198</link>
      <description>&lt;P&gt;You're welcome! Please "Accept as solution" if it has solved the issue.&lt;/P&gt;</description>
      <pubDate>Thu, 16 Oct 2025 22:06:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Data-Label-on-Graph/m-p/4852289#M185198</guid>
      <dc:creator>djurecic</dc:creator>
      <dc:date>2025-10-16T22:06:53Z</dc:date>
    </item>
  </channel>
</rss>

