<?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: Cumulative % by month in Custom Visuals Development Discussion</title>
    <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Cumulative-by-month/m-p/4381029#M12086</link>
    <description>&lt;P&gt;You have disabled download and copy/paste.&amp;nbsp; Please remove at least one of the restrictions.&lt;/P&gt;</description>
    <pubDate>Sun, 26 Jan 2025 01:45:18 GMT</pubDate>
    <dc:creator>lbendlin</dc:creator>
    <dc:date>2025-01-26T01:45:18Z</dc:date>
    <item>
      <title>Cumulative % by month</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Cumulative-by-month/m-p/4380212#M12083</link>
      <description>&lt;P&gt;I have some training data that I need to chart cumulative completion % per person (toward 100%) . I have two primary measures I'm using to calculate a person's training completion to date: Training Points Earned and % Cumulative Training.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm getting the "points" earned by this measure (this normalizes 1 training = 1 point):&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;PRE&gt;&lt;SPAN&gt;Training Points Earned =&lt;/SPAN&gt; &lt;BR /&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;COUNTROWS&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Data'&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Data'&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;[Difference from Previous Training]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;gt; &lt;/SPAN&gt;&lt;SPAN&gt;0&lt;/SPAN&gt;&lt;SPAN&gt; || &lt;/SPAN&gt;&lt;SPAN&gt;ISBLANK&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[Difference from Previous Training]&lt;/SPAN&gt;&lt;SPAN&gt;)))&lt;/SPAN&gt;&lt;/PRE&gt;&lt;/DIV&gt;&lt;UL&gt;&lt;LI&gt;Note: This measure leverages another measure to assess if a training receives a point or not (there are occurrences where a training doesn't receive a point).&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm then getting the cumulative training completed to date from this measure (my denomentaror is coming from a source where total expected points per user are stored):&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;% Cumulative Training =&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;SUMX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Data'&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;DIVIDE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;[Training Points Earned]&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;MAX&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Course Codes'&lt;/SPAN&gt;&lt;SPAN&gt;[Total Workgroup Points]&lt;/SPAN&gt;&lt;SPAN&gt;))),&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;FILTER&lt;/SPAN&gt;&lt;SPAN&gt; (&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;ALLEXCEPT&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;'Data'&lt;/SPAN&gt;&lt;SPAN&gt;, &lt;/SPAN&gt;&lt;SPAN&gt;'Data'&lt;/SPAN&gt;&lt;SPAN&gt;[USERNAME]&lt;/SPAN&gt;&lt;SPAN&gt;),&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;'Data'&lt;/SPAN&gt;&lt;SPAN&gt;[RESPONSEID]&lt;/SPAN&gt;&lt;SPAN&gt; &amp;lt;= &lt;/SPAN&gt;&lt;SPAN&gt;MAX&lt;/SPAN&gt;&lt;SPAN&gt;( &lt;/SPAN&gt;&lt;SPAN&gt;'Data'&lt;/SPAN&gt;&lt;SPAN&gt;[RESPONSEID]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; )&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/PRE&gt;&lt;UL&gt;&lt;LI&gt;&lt;SPAN&gt;Note: People can update their record after generation, therefore, I'm using the RESPONSEID versus a Date field to keep the data chronological, leveraging the IDs numerical order as issued by the system.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Both of my measures are working as expected, as evidenced in my sample data below.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is where I'm struggling:&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;When I input my % Cumulative Training measure onto a line graph, it's summing all previous rows giving me well over the 100% expected maximum. Right now my data is charting by a week number instead of month name, but the issue remains the same.&amp;nbsp;&lt;UL&gt;&lt;LI&gt;Changing my axis limits wouldn't help resolve the issue because the data itself isn't presenting how I want it to.&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P class="lia-indent-padding-left-90px"&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="deaconb_0-1737737767261.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1230751i77A12D6BE5B51246/image-size/medium?v=v2&amp;amp;px=400" role="button" title="deaconb_0-1737737767261.png" alt="deaconb_0-1737737767261.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;I believe I need to obtain the maximum value of a given month per user. I've tried to write a measure to do this, however, I can't get the data to return properly. I can only get the maximum % per user, and not their incremental maximums per month.&amp;nbsp;&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Here is my sample data:&amp;nbsp;&lt;A href="https://docs.google.com/spreadsheets/d/13zVC-leAJ7OUsi4CmIhvPMLhf7nqu0qwHtvGXHfBccQ/edit?usp=sharing" target="_blank" rel="noopener"&gt;Sample Data&lt;/A&gt;. I've highlighted the rows I think I need to capture to properly chart the data.&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;I am stuck with how to proceed and I'd appreciate any gudiance anyone can offer!&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 24 Jan 2025 17:37:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Cumulative-by-month/m-p/4380212#M12083</guid>
      <dc:creator>deaconb</dc:creator>
      <dc:date>2025-01-24T17:37:00Z</dc:date>
    </item>
    <item>
      <title>Re: Cumulative % by month</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Cumulative-by-month/m-p/4381029#M12086</link>
      <description>&lt;P&gt;You have disabled download and copy/paste.&amp;nbsp; Please remove at least one of the restrictions.&lt;/P&gt;</description>
      <pubDate>Sun, 26 Jan 2025 01:45:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Cumulative-by-month/m-p/4381029#M12086</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2025-01-26T01:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: Cumulative % by month</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Cumulative-by-month/m-p/4381318#M12091</link>
      <description>&lt;P&gt;Done&lt;/P&gt;</description>
      <pubDate>Sun, 26 Jan 2025 15:19:22 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Cumulative-by-month/m-p/4381318#M12091</guid>
      <dc:creator>deaconb</dc:creator>
      <dc:date>2025-01-26T15:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: Cumulative % by month</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Cumulative-by-month/m-p/4381549#M12094</link>
      <description>&lt;P&gt;What's the contents of the 'Course Codes'&amp;nbsp; table?&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2025 02:28:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Cumulative-by-month/m-p/4381549#M12094</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2025-01-27T02:28:56Z</dc:date>
    </item>
    <item>
      <title>Re: Cumulative % by month</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Cumulative-by-month/m-p/4382576#M12102</link>
      <description>&lt;P&gt;It's the required training - not really relevant to the issue at hand except to understand where a denominator is coming from.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2025 13:58:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Cumulative-by-month/m-p/4382576#M12102</guid>
      <dc:creator>deaconb</dc:creator>
      <dc:date>2025-01-27T13:58:34Z</dc:date>
    </item>
    <item>
      <title>Re: Cumulative % by month</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Cumulative-by-month/m-p/4382697#M12103</link>
      <description>&lt;P&gt;Please provide sample data &lt;STRONG&gt;that fully covers your issue&lt;/STRONG&gt;.&lt;BR /&gt;Please show the expected outcome based on the sample data you provided.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2025 14:58:26 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Cumulative-by-month/m-p/4382697#M12103</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2025-01-27T14:58:26Z</dc:date>
    </item>
    <item>
      <title>Re: Cumulative % by month</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Cumulative-by-month/m-p/4385266#M12115</link>
      <description>&lt;P&gt;I'm looking to chart cumulative training data without the underlying data adding up the way it is now when charted (see original post). I think the way to do this is to obtain the max value of a given month and the latest overall value (highlighted rows in my sample data).&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'd like to understand if my thought process is accurate for how to chart my data so it appears something like this, where each user's cumulative completion is charting toward 100%:&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="deaconb_1-1738105011190.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1232003iFCB39E793C43F6A1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="deaconb_1-1738105011190.png" alt="deaconb_1-1738105011190.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And if my thought process is accurate, how to get that data via a measure or caluclated column as that's where I'm stuck. Or if there's a better solution for what I'm trying to do, I'm open to that!&lt;/P&gt;</description>
      <pubDate>Tue, 28 Jan 2025 22:57:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/Cumulative-by-month/m-p/4385266#M12115</guid>
      <dc:creator>deaconb</dc:creator>
      <dc:date>2025-01-28T22:57:17Z</dc:date>
    </item>
  </channel>
</rss>

