<?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: Calculating Score Difference between oldest and newest score in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Score-Difference-between-oldest-and-newest-score/m-p/5146700#M187693</link>
    <description>&lt;P&gt;Yes, the responses helped. I marked one of them as the solution.&lt;/P&gt;</description>
    <pubDate>Fri, 10 Apr 2026 13:27:48 GMT</pubDate>
    <dc:creator>banhngu</dc:creator>
    <dc:date>2026-04-10T13:27:48Z</dc:date>
    <item>
      <title>Calculating Score Difference between oldest and newest score</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Score-Difference-between-oldest-and-newest-score/m-p/5143487#M187585</link>
      <description>&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;What can I write to calculate the difference between a person's earliest score and latest score based on name and date? I was trying to create a separate column for that calculation under a column called "Point Increase."&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Using Bob as an example, his point increase column would display 10. I'm trying to calculate for all students.&lt;/P&gt;</description>
      <pubDate>Fri, 03 Apr 2026 15:59:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Score-Difference-between-oldest-and-newest-score/m-p/5143487#M187585</guid>
      <dc:creator>banhngu</dc:creator>
      <dc:date>2026-04-03T15:59:55Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Score Difference between oldest and newest score</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Score-Difference-between-oldest-and-newest-score/m-p/5143512#M187586</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1574735" data-lia-user-login="banhngu" class="lia-mention lia-mention-user"&gt;banhngu&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;try a measure like this one that doesn't care about the names:&lt;/P&gt;
&lt;DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;Score Difference =&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;_EarliestDate&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;MIN&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Scores&lt;/SPAN&gt;&lt;SPAN&gt;[date.taken]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;_LatestDate&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;Scores&lt;/SPAN&gt;&lt;SPAN&gt;[date.taken]&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;_EarliestScore&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;MIN&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Scores&lt;/SPAN&gt;&lt;SPAN&gt;[Composite Score]&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;Scores&lt;/SPAN&gt;&lt;SPAN&gt;[date.taken]&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;_EarliestDate&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;VAR&lt;/SPAN&gt; &lt;SPAN&gt;_LatestScore&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;CALCULATE&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;MIN&lt;/SPAN&gt;&lt;SPAN&gt;(&lt;/SPAN&gt;&lt;SPAN&gt;Scores&lt;/SPAN&gt;&lt;SPAN&gt;[Composite Score]&lt;/SPAN&gt;&lt;SPAN&gt;), &lt;/SPAN&gt;&lt;SPAN&gt;Scores&lt;/SPAN&gt;&lt;SPAN&gt;[date.taken]&lt;/SPAN&gt;&lt;SPAN&gt; = &lt;/SPAN&gt;&lt;SPAN&gt;_LatestDate&lt;/SPAN&gt;&lt;SPAN&gt;)&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;RETURN&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &lt;/SPAN&gt;&lt;SPAN&gt;_LatestScore&lt;/SPAN&gt;&lt;SPAN&gt; - &lt;/SPAN&gt;&lt;SPAN&gt;_EarliestScore&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;SPAN&gt;Based on this measure add a matrix or table visual to your report with student_name as rows resp. first column and the measure as values resp. next column. Every row sets a filter for student_name, the measure is calculated based on that filter setting.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;img /&gt;&lt;SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;
&lt;P&gt;I added some data for a Lisa to your demo set of data:&lt;/P&gt;
&lt;img /&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope that helps.&lt;/P&gt;
&lt;/DIV&gt;
&lt;/DIV&gt;</description>
      <pubDate>Fri, 03 Apr 2026 18:09:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Score-Difference-between-oldest-and-newest-score/m-p/5143512#M187586</guid>
      <dc:creator>Hans-Georg_Puls</dc:creator>
      <dc:date>2026-04-03T18:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Score Difference between oldest and newest score</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Score-Difference-between-oldest-and-newest-score/m-p/5143612#M187588</link>
      <description>&lt;P&gt;Please try the measure below:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Point Increase =
VAR _Student     = SELECTEDVALUE ( 'Table'[student_name] )
VAR _EarliestDate =
    CALCULATE (
        MIN ( 'Table'[date_taken] ),
        'Table'[student_name] = _Student
    )
VAR _LatestDate =
    CALCULATE (
        MAX ( 'Table'[date_taken] ),
        'Table'[student_name] = _Student
    )
VAR _EarliestScore =
    CALCULATE (
        MAX ( 'Table'[Composite Score] ),
        'Table'[student_name] = _Student,
        'Table'[date_taken] = _EarliestDate
    )
VAR _LatestScore =
    CALCULATE (
        MAX ( 'Table'[Composite Score] ),
        'Table'[student_name] = _Student,
        'Table'[date_taken] = _LatestDate
    )
RETURN
    _LatestScore - _EarliestScore&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you strictly need calculated column, you could try using:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Point Increase =
VAR _Student      = 'Table'[student_name]
VAR _EarliestDate = CALCULATE ( MIN ( 'Table'[date_taken] ), ALL ( 'Table' ), 'Table'[student_name] = _Student )
VAR _LatestDate   = CALCULATE ( MAX ( 'Table'[date_taken] ), ALL ( 'Table' ), 'Table'[student_name] = _Student )
VAR _EarliestScore =
    CALCULATE (
        MAX ( 'Table'[Composite Score] ),
        ALL ( 'Table' ),
        'Table'[student_name] = _Student,
        'Table'[date_taken]   = _EarliestDate
    )
VAR _LatestScore =
    CALCULATE (
        MAX ( 'Table'[Composite Score] ),
        ALL ( 'Table' ),
        'Table'[student_name] = _Student,
        'Table'[date_taken]   = _LatestDate
    )
RETURN
    _LatestScore - _EarliestScore&lt;/LI-CODE&gt;</description>
      <pubDate>Sat, 04 Apr 2026 11:35:29 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Score-Difference-between-oldest-and-newest-score/m-p/5143612#M187588</guid>
      <dc:creator>cengizhanarslan</dc:creator>
      <dc:date>2026-04-04T11:35:29Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Score Difference between oldest and newest score</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Score-Difference-between-oldest-and-newest-score/m-p/5143784#M187604</link>
      <description>&lt;P&gt;This is a great use case for working with row context vs. filter context — you basically want to compare each person’s first and last recorded score.&lt;/P&gt;&lt;P&gt;If you’re doing this as a calculated column, one approach is to anchor both the earliest and latest score for each person, then take the difference:&lt;/P&gt;&lt;P&gt;Point Increase =&lt;BR /&gt;VAR FirstScore =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;MIN('Table'[Score]),&lt;BR /&gt;FILTER(&lt;BR /&gt;'Table',&lt;BR /&gt;'Table'[Name] = EARLIER('Table'[Name])&lt;BR /&gt;&amp;amp;&amp;amp; 'Table'[Date] =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;MIN('Table'[Date]),&lt;BR /&gt;FILTER('Table', 'Table'[Name] = EARLIER('Table'[Name]))&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;VAR LastScore =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;MAX('Table'[Score]),&lt;BR /&gt;FILTER(&lt;BR /&gt;'Table',&lt;BR /&gt;'Table'[Name] = EARLIER('Table'[Name])&lt;BR /&gt;&amp;amp;&amp;amp; 'Table'[Date] =&lt;BR /&gt;CALCULATE(&lt;BR /&gt;MAX('Table'[Date]),&lt;BR /&gt;FILTER('Table', 'Table'[Name] = EARLIER('Table'[Name]))&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;)&lt;BR /&gt;RETURN&lt;BR /&gt;LastScore - FirstScore&lt;/P&gt;&lt;P&gt;This will return the same “point increase” for each row per person, based on their earliest and latest dates.&lt;/P&gt;&lt;P&gt;Alternatively, if you don’t specifically need it as a column, this is often cleaner as a measure using MIN/MAX date context, especially if you’re visualizing it.&lt;/P&gt;&lt;P&gt;I’ve run into similar scenarios where the tricky part isn’t the math itself, but making sure you’re consistently anchoring to the correct first/last record per entity.&lt;/P&gt;</description>
      <pubDate>Sun, 05 Apr 2026 13:33:13 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Score-Difference-between-oldest-and-newest-score/m-p/5143784#M187604</guid>
      <dc:creator>donbuser</dc:creator>
      <dc:date>2026-04-05T13:33:13Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Score Difference between oldest and newest score</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Score-Difference-between-oldest-and-newest-score/m-p/5143997#M187621</link>
      <description>&lt;P&gt;hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1574735" data-lia-user-login="banhngu" class="lia-mention lia-mention-user"&gt;banhngu&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;To calculate the point increase between a student's earliest and latest composite scores, you can use &lt;/SPAN&gt;&lt;STRONG&gt;Variables (&lt;/STRONG&gt;&lt;STRONG&gt;VAR&lt;/STRONG&gt;&lt;STRONG&gt;)&lt;/STRONG&gt;&lt;SPAN class=""&gt; combined with the &lt;/SPAN&gt;&lt;STRONG&gt;CALCULATE&lt;/STRONG&gt;&lt;SPAN class=""&gt; function to safely navigate the dates for each student.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;SPAN class=""&gt;Because you mentioned adding this as a separate column, I will provide the DAX for a &lt;/SPAN&gt;&lt;STRONG&gt;Calculated Column&lt;/STRONG&gt;&lt;SPAN class=""&gt;, but I will also provide the &lt;/SPAN&gt;&lt;STRONG&gt;Measure&lt;/STRONG&gt;&lt;SPAN class=""&gt; approach, which is usually recommended over calculated columns for dynamic reporting.&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;PRE&gt;Point Increase = 
// 1. Identify the earliest and latest dates for this specific student
VAR EarliestDate = 
    CALCULATE (
        MIN ( TestScores[date_taken] ),
        ALLEXCEPT ( TestScores, TestScores[student_name] )
    )

VAR LatestDate = 
    CALCULATE (
        MAX ( TestScores[date_taken] ),
        ALLEXCEPT ( TestScores, TestScores[student_name] )
    )

// 2. Retrieve the Composite Score on the Earliest Date
VAR EarliestScore = 
    CALCULATE (
        MAX ( TestScores[Composite Score] ), 
        ALLEXCEPT ( TestScores, TestScores[student_name] ),
        TestScores[date_taken] = EarliestDate
    )

// 3. Retrieve the Composite Score on the Latest Date
VAR LatestScore = 
    CALCULATE (
        MAX ( TestScores[Composite Score] ), 
        ALLEXCEPT ( TestScores, TestScores[student_name] ),
        TestScores[date_taken] = LatestDate
    )

// 4. Calculate the difference
RETURN
    LatestScore - EarliestScore&lt;/PRE&gt;&lt;P&gt;&lt;SPAN class=""&gt;If you place &lt;/SPAN&gt;student_name&lt;SPAN class=""&gt; into a Table or Matrix visual in your report, a Measure is much more efficient. A measure does not consume memory in your data model like a calculated column does&lt;/SPAN&gt;&lt;SPAN class=""&gt;. Because the visual itself automatically filters down to the specific student, you do not need the &lt;/SPAN&gt;ALLEXCEPT&lt;SPAN class=""&gt; function here.&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;Point Increase Measure = 
VAR EarliestDate = MIN ( TestScores[date_taken] )
VAR LatestDate = MAX ( TestScores[date_taken] )

VAR EarliestScore = 
    CALCULATE (
        MAX ( TestScores[Composite Score] ),
        TestScores[date_taken] = EarliestDate
    )

VAR LatestScore = 
    CALCULATE (
        MAX ( TestScores[Composite Score] ),
        TestScores[date_taken] = LatestDate
    )

RETURN
    IF (
        NOT ISBLANK(EarliestScore) &amp;amp;&amp;amp; NOT ISBLANK(LatestScore),
        LatestScore - EarliestScore
    )&lt;/PRE&gt;&lt;P&gt;If this helped, please consider giving kudos and mark as a solution&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;@me in replies or I'll lose your thread&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/DIV&gt;</description>
      <pubDate>Mon, 06 Apr 2026 06:57:03 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Score-Difference-between-oldest-and-newest-score/m-p/5143997#M187621</guid>
      <dc:creator>mizan2390</dc:creator>
      <dc:date>2026-04-06T06:57:03Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Score Difference between oldest and newest score</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Score-Difference-between-oldest-and-newest-score/m-p/5146299#M187692</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1574735" data-lia-user-login="banhngu" class="lia-mention lia-mention-user"&gt;banhngu&lt;/a&gt;,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Thank you for reaching out to the Microsoft Fabric Community Forum. Also, thanks to&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="847282" data-lia-user-login="mizan2390" class="lia-mention lia-mention-user"&gt;mizan2390&lt;/a&gt;,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1570707" data-lia-user-login="donbuser" class="lia-mention lia-mention-user"&gt;donbuser&lt;/a&gt;,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1292787" data-lia-user-login="cengizhanarslan" class="lia-mention lia-mention-user"&gt;cengizhanarslan&lt;/a&gt;,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1347575" data-lia-user-login="Hans-Georg_Puls" class="lia-mention lia-mention-user"&gt;Hans-Georg_Puls&lt;/a&gt;,&amp;nbsp; for those inputs on this thread.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Has your issue been resolved? If the response provided by the community member&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="847282" data-lia-user-login="mizan2390" class="lia-mention lia-mention-user"&gt;mizan2390&lt;/a&gt;,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1570707" data-lia-user-login="donbuser" class="lia-mention lia-mention-user"&gt;donbuser&lt;/a&gt;,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1292787" data-lia-user-login="cengizhanarslan" class="lia-mention lia-mention-user"&gt;cengizhanarslan&lt;/a&gt;,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1347575" data-lia-user-login="Hans-Georg_Puls" class="lia-mention lia-mention-user"&gt;Hans-Georg_Puls&lt;/a&gt;, addressed your query, could you please confirm? It helps us ensure that the solutions provided are effective and beneficial for everyone.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Hope this helps clarify things and let me know what you find after giving these steps a try happy to help you investigate this further.&lt;BR /&gt;&lt;BR /&gt;Thank you for using the Microsoft Community Forum.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 10 Apr 2026 06:36:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Score-Difference-between-oldest-and-newest-score/m-p/5146299#M187692</guid>
      <dc:creator>v-kpoloju-msft</dc:creator>
      <dc:date>2026-04-10T06:36:08Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Score Difference between oldest and newest score</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Score-Difference-between-oldest-and-newest-score/m-p/5146700#M187693</link>
      <description>&lt;P&gt;Yes, the responses helped. I marked one of them as the solution.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Apr 2026 13:27:48 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Score-Difference-between-oldest-and-newest-score/m-p/5146700#M187693</guid>
      <dc:creator>banhngu</dc:creator>
      <dc:date>2026-04-10T13:27:48Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Score Difference between oldest and newest score</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Score-Difference-between-oldest-and-newest-score/m-p/5147344#M187706</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1574735" data-lia-user-login="banhngu" class="lia-mention lia-mention-user"&gt;banhngu&lt;/a&gt;,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P data-start="87" data-end="190"&gt;Thanks for confirming, glad to hear the responses helped and that you were able to identify a solution.&lt;/P&gt;
&lt;P data-start="192" data-end="311" data-is-last-node="" data-is-only-node=""&gt;If you run into any further questions or need additional clarification, feel free to reach out happy to assist anytime.&lt;/P&gt;</description>
      <pubDate>Mon, 13 Apr 2026 05:29:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Score-Difference-between-oldest-and-newest-score/m-p/5147344#M187706</guid>
      <dc:creator>v-kpoloju-msft</dc:creator>
      <dc:date>2026-04-13T05:29:00Z</dc:date>
    </item>
    <item>
      <title>Re: Calculating Score Difference between oldest and newest score</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Score-Difference-between-oldest-and-newest-score/m-p/5152287#M187772</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1574735" data-lia-user-login="banhngu" class="lia-mention lia-mention-user"&gt;banhngu&lt;/a&gt;,&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Just wanted to follow up. If the shared guidance worked for you, that’s wonderful hopefully it also helps others looking for similar answers. If there’s anything else you'd like to explore or clarify, don’t hesitate to reach out.&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;/LI-WRAPPER&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 17 Apr 2026 09:56:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Calculating-Score-Difference-between-oldest-and-newest-score/m-p/5152287#M187772</guid>
      <dc:creator>v-kpoloju-msft</dc:creator>
      <dc:date>2026-04-17T09:56:55Z</dc:date>
    </item>
  </channel>
</rss>

