<?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 Labels on a Line Graph in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Data-Labels-on-a-Line-Graph/m-p/4776837#M182956</link>
    <description>&lt;P&gt;Thank you, this worked.&lt;/P&gt;</description>
    <pubDate>Fri, 25 Jul 2025 19:59:23 GMT</pubDate>
    <dc:creator>e175429</dc:creator>
    <dc:date>2025-07-25T19:59:23Z</dc:date>
    <item>
      <title>Data Labels on a Line Graph</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Data-Labels-on-a-Line-Graph/m-p/4775593#M182896</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How do I get my data labels to show % instead of whole numbers?&lt;/P&gt;&lt;P&gt;This is my graph currently:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;As you see, when I hover over a data point, it shows whole numbers.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I took these steps to try to get it to show %'s:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This is the result:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;As you see, the %'s are sooooo wrong.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;From the 1st image, in Jan-24, you see I have a total of 980.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;930/980 = 95%&lt;/P&gt;&lt;P&gt;50/980&amp;nbsp; &amp;nbsp;= 5%&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;These are the 2 %'s that sould be shown.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jul 2025 19:28:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Data-Labels-on-a-Line-Graph/m-p/4775593#M182896</guid>
      <dc:creator>e175429</dc:creator>
      <dc:date>2025-07-24T19:28:37Z</dc:date>
    </item>
    <item>
      <title>Re: Data Labels on a Line Graph</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Data-Labels-on-a-Line-Graph/m-p/4775606#M182897</link>
      <description>&lt;P&gt;You will need to create a DAX measure to calculate that percentage. It's best to use the Divide function.&lt;/P&gt;&lt;P&gt;For example&amp;nbsp;&lt;/P&gt;&lt;P&gt;PercentageOfLastYearSales =&lt;BR /&gt;DIVIDE(&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [CurrentYearSales],&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; [PreviousYearSales],&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0&lt;BR /&gt;)&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jul 2025 19:42:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Data-Labels-on-a-Line-Graph/m-p/4775606#M182897</guid>
      <dc:creator>HearnTexas</dc:creator>
      <dc:date>2025-07-24T19:42:06Z</dc:date>
    </item>
    <item>
      <title>Re: Data Labels on a Line Graph</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Data-Labels-on-a-Line-Graph/m-p/4775624#M182900</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;&lt;/P&gt;&lt;P&gt;&amp;nbsp;When you select 'Show value as percent of grand total', it's giving a percentage of all the data, so your percentages are correct, as it's showing Jan requests closed is 4% of all requests closed in all months.&lt;BR /&gt;&lt;BR /&gt;You need to add a measures that compare the values against eachother, then change the format to percentage and add as tooltips. Change the below measures to fit your data:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Sales Amount by Due Date % = 
DIVIDE([Sales Amount by Due Date], [Sum of Sales Amount] + [Sales Amount by Due Date], 0)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Sales Amount % = 
DIVIDE([Sum of Sales Amount], [Sum of Sales Amount] + [Sales Amount by Due Date], 0)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You'll then have the following result (I'll leave the GT% in as an example)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;I hope this helps, please give a thumbs up and mark as solved if it does, thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jul 2025 20:04:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Data-Labels-on-a-Line-Graph/m-p/4775624#M182900</guid>
      <dc:creator>wardy912</dc:creator>
      <dc:date>2025-07-24T20:04:09Z</dc:date>
    </item>
    <item>
      <title>Re: Data Labels on a Line Graph</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Data-Labels-on-a-Line-Graph/m-p/4776837#M182956</link>
      <description>&lt;P&gt;Thank you, this worked.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jul 2025 19:59:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Data-Labels-on-a-Line-Graph/m-p/4776837#M182956</guid>
      <dc:creator>e175429</dc:creator>
      <dc:date>2025-07-25T19:59:23Z</dc:date>
    </item>
  </channel>
</rss>

