<?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 Totals are wrong in Aggregation in Desktop</title>
    <link>https://community.fabric.microsoft.com/t5/Desktop/Totals-are-wrong-in-Aggregation/m-p/4813644#M1431663</link>
    <description>&lt;P&gt;Hello,&lt;BR /&gt;I have created some Measures to calculate FX-, Price-, and Volume Effects for sales. FX_Effects working well and also the totals in aggregation are correct.&amp;nbsp;&lt;BR /&gt;Coming now to my Problems:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Price Effect = 
VAR CompScenarioSel = SELECTEDVALUE('Comparison Selector'[Compared to])
VAR FocusScenario   = SELECTEDVALUE(FocusScenario[Focus Scenario])
VAR FocusYear       = SELECTEDVALUE(GemeinsameJahre[Year])
VAR ReportCurrency  = SELECTEDVALUE('Currency Selector'[Currency], "EUR")

RETURN
SUMX(
    ADDCOLUMNS(
        SUMMARIZE(
            'Sales Data',
            'Sales Data'[Company Code],
            'Sales Data'[Material],
            'Sales Data'[Posting period],
            'Sales Data'[Inv Currency]
        ),
        "NSPFocus", CALCULATE(
            [NSPFocus_LC],
            'Sales Data'[Scenario] = FocusScenario,
            'Sales Data'[Year] = FocusYear
        ),
        "NSPComp", CALCULATE(
            [NSPComp_LC],
            'Sales Data'[Scenario] = 
                SWITCH(
                    CompScenarioSel,
                    "Budget", "Budget",
                    "Prior Year", FocusScenario
                ),
            'Sales Data'[Year] = 
                SWITCH(
                    CompScenarioSel,
                    "Budget", FocusYear,
                    "Prior Year", FocusYear - 1
                )
        ),
        "FX", [FX_Rate_CompPeriod],
        "FocusMT", [FocusMT]
    ),
    IF(
        [Company Code] IN { "PF3091","PF3HGS","PF3262","PF3267" } ||
        [Material] = "100222" ||
        [NSPComp] &amp;lt;= 0 ||
        [NSPFocus] &amp;lt;= 0,
        0,
        ([NSPFocus] - [NSPComp]) * [FX] * [FocusMT] * 1000
    )
)&lt;/LI-CODE&gt;&lt;P&gt;this one is my Price effect. If I am on lowest level (Customer-Article) line, the effect is calculated correctly. Even, when I am selecting multiple month.&amp;nbsp;&lt;BR /&gt;But looking at the grand totals, there is an error, and it seems, also on total line, the effect (and also the volume effect) is calculated, and not only the sum of the single lines.&amp;nbsp;&lt;BR /&gt;How do I have to adjust my Measures, that the totals are working well, when I start to aggregate the single lines.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Volume Effect = 
SUMX (
    SUMMARIZE(
        'Sales Data',
        'Sales Data'[Company Code],
        'Sales Data'[Material],
        'Sales Data'[Posting period],
        'Sales Data'[Inv Currency]
    ),
    VAR CompCode = [Company Code]
    VAR Mat = [Material]

    VAR CompMT = 
        CALCULATE([CompMT],
            'Sales Data'[Company Code] = CompCode,
            'Sales Data'[Material] = Mat
        )

    VAR FocusMT = 
        CALCULATE([FocusMT],
            'Sales Data'[Company Code] = CompCode,
            'Sales Data'[Material] = Mat
        )

    VAR NSPFocus = 
        CALCULATE([NSPFocus_LC],
            'Sales Data'[Company Code] = CompCode,
            'Sales Data'[Material] = Mat
        )

    VAR NSPComp = 
        CALCULATE([NSPComp_LC],
            'Sales Data'[Company Code] = CompCode,
            'Sales Data'[Material] = Mat
        )

    VAR FX_Focus = 
        CALCULATE([FX_Rate_FocusPeriod],
            'Sales Data'[Company Code] = CompCode,
            'Sales Data'[Material] = Mat
        )

    VAR FX_Comp = 
        CALCULATE([FX_Rate_CompPeriod],
            'Sales Data'[Company Code] = CompCode,
            'Sales Data'[Material] = Mat
        )

    RETURN
        IF (
            CompCode IN { "PF3091" } || FocusMT = 0,
            0,
            IF (
                CompMT = 0,
                (FocusMT - CompMT) * NSPFocus * FX_Focus * 1000,
                (FocusMT - CompMT) * NSPComp * FX_Comp * 1000
            )
        )
)&lt;/LI-CODE&gt;</description>
    <pubDate>Mon, 01 Sep 2025 14:29:06 GMT</pubDate>
    <dc:creator>Pfoster</dc:creator>
    <dc:date>2025-09-01T14:29:06Z</dc:date>
    <item>
      <title>Totals are wrong in Aggregation</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Totals-are-wrong-in-Aggregation/m-p/4813644#M1431663</link>
      <description>&lt;P&gt;Hello,&lt;BR /&gt;I have created some Measures to calculate FX-, Price-, and Volume Effects for sales. FX_Effects working well and also the totals in aggregation are correct.&amp;nbsp;&lt;BR /&gt;Coming now to my Problems:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Price Effect = 
VAR CompScenarioSel = SELECTEDVALUE('Comparison Selector'[Compared to])
VAR FocusScenario   = SELECTEDVALUE(FocusScenario[Focus Scenario])
VAR FocusYear       = SELECTEDVALUE(GemeinsameJahre[Year])
VAR ReportCurrency  = SELECTEDVALUE('Currency Selector'[Currency], "EUR")

RETURN
SUMX(
    ADDCOLUMNS(
        SUMMARIZE(
            'Sales Data',
            'Sales Data'[Company Code],
            'Sales Data'[Material],
            'Sales Data'[Posting period],
            'Sales Data'[Inv Currency]
        ),
        "NSPFocus", CALCULATE(
            [NSPFocus_LC],
            'Sales Data'[Scenario] = FocusScenario,
            'Sales Data'[Year] = FocusYear
        ),
        "NSPComp", CALCULATE(
            [NSPComp_LC],
            'Sales Data'[Scenario] = 
                SWITCH(
                    CompScenarioSel,
                    "Budget", "Budget",
                    "Prior Year", FocusScenario
                ),
            'Sales Data'[Year] = 
                SWITCH(
                    CompScenarioSel,
                    "Budget", FocusYear,
                    "Prior Year", FocusYear - 1
                )
        ),
        "FX", [FX_Rate_CompPeriod],
        "FocusMT", [FocusMT]
    ),
    IF(
        [Company Code] IN { "PF3091","PF3HGS","PF3262","PF3267" } ||
        [Material] = "100222" ||
        [NSPComp] &amp;lt;= 0 ||
        [NSPFocus] &amp;lt;= 0,
        0,
        ([NSPFocus] - [NSPComp]) * [FX] * [FocusMT] * 1000
    )
)&lt;/LI-CODE&gt;&lt;P&gt;this one is my Price effect. If I am on lowest level (Customer-Article) line, the effect is calculated correctly. Even, when I am selecting multiple month.&amp;nbsp;&lt;BR /&gt;But looking at the grand totals, there is an error, and it seems, also on total line, the effect (and also the volume effect) is calculated, and not only the sum of the single lines.&amp;nbsp;&lt;BR /&gt;How do I have to adjust my Measures, that the totals are working well, when I start to aggregate the single lines.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Volume Effect = 
SUMX (
    SUMMARIZE(
        'Sales Data',
        'Sales Data'[Company Code],
        'Sales Data'[Material],
        'Sales Data'[Posting period],
        'Sales Data'[Inv Currency]
    ),
    VAR CompCode = [Company Code]
    VAR Mat = [Material]

    VAR CompMT = 
        CALCULATE([CompMT],
            'Sales Data'[Company Code] = CompCode,
            'Sales Data'[Material] = Mat
        )

    VAR FocusMT = 
        CALCULATE([FocusMT],
            'Sales Data'[Company Code] = CompCode,
            'Sales Data'[Material] = Mat
        )

    VAR NSPFocus = 
        CALCULATE([NSPFocus_LC],
            'Sales Data'[Company Code] = CompCode,
            'Sales Data'[Material] = Mat
        )

    VAR NSPComp = 
        CALCULATE([NSPComp_LC],
            'Sales Data'[Company Code] = CompCode,
            'Sales Data'[Material] = Mat
        )

    VAR FX_Focus = 
        CALCULATE([FX_Rate_FocusPeriod],
            'Sales Data'[Company Code] = CompCode,
            'Sales Data'[Material] = Mat
        )

    VAR FX_Comp = 
        CALCULATE([FX_Rate_CompPeriod],
            'Sales Data'[Company Code] = CompCode,
            'Sales Data'[Material] = Mat
        )

    RETURN
        IF (
            CompCode IN { "PF3091" } || FocusMT = 0,
            0,
            IF (
                CompMT = 0,
                (FocusMT - CompMT) * NSPFocus * FX_Focus * 1000,
                (FocusMT - CompMT) * NSPComp * FX_Comp * 1000
            )
        )
)&lt;/LI-CODE&gt;</description>
      <pubDate>Mon, 01 Sep 2025 14:29:06 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Totals-are-wrong-in-Aggregation/m-p/4813644#M1431663</guid>
      <dc:creator>Pfoster</dc:creator>
      <dc:date>2025-09-01T14:29:06Z</dc:date>
    </item>
    <item>
      <title>Re: Totals are wrong in Aggregation</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Totals-are-wrong-in-Aggregation/m-p/4813653#M1431665</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1260252" data-lia-user-login="Pfoster" class="lia-mention lia-mention-user"&gt;Pfoster&lt;/a&gt;&amp;nbsp;First, please vote for this idea: &lt;A href="https://community.fabric.microsoft.com/t5/Fabric-Ideas/Matrix-Table-grand-totals-with-Measures/idi-p/4475982" target="_blank"&gt;https://community.fabric.microsoft.com/t5/Fabric-Ideas/Matrix-Table-grand-totals-with-Measures/idi-p/4475982&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;This looks like a measure totals problem. Very common. See my post about it here: &lt;A href="https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376" target="_blank"&gt;https://community.powerbi.com/t5/DAX-Commands-and-Tips/Dealing-with-Measure-Totals/td-p/63376&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Also, this Quick Measure, Measure Totals, The Final Word should get you what you need:&lt;BR /&gt;&lt;A href="https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907" target="_blank"&gt;https://community.powerbi.com/t5/Quick-Measures-Gallery/Measure-Totals-The-Final-Word/m-p/547907&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Also: &lt;A href="https://youtu.be/uXRriTN0cfY" target="_blank"&gt;https://youtu.be/uXRriTN0cfY&lt;/A&gt;&lt;BR /&gt;And: &lt;A href="https://youtu.be/n4TYhF2ARe8" target="_blank"&gt;https://youtu.be/n4TYhF2ARe8&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 14:36:54 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Totals-are-wrong-in-Aggregation/m-p/4813653#M1431665</guid>
      <dc:creator>Greg_Deckler</dc:creator>
      <dc:date>2025-09-01T14:36:54Z</dc:date>
    </item>
    <item>
      <title>Re: Totals are wrong in Aggregation</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Totals-are-wrong-in-Aggregation/m-p/4813696#M1431676</link>
      <description>&lt;P&gt;Ciao&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1260252" data-lia-user-login="Pfoster" class="lia-mention lia-mention-user"&gt;Pfoster&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;at the lower level, calculations are going by customer or article and at that level of detail your DAX works correctly, you say&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Therefore, we must force the code to work always customer by customer or article by article (or by tuples article - customer)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now, you say that one of your measures works perfectly at all levels, can you show that measure code?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I can inspect it&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyway, just to give you an idea, the SUMMARIZE will have to change probably and the RETURN statement&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Of course if you could please show data samples, pictures of the error, model layout and arrangements of the visual wjere you see the bad total, that would help helping you&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If this helped, please consider giving kudos and mark as a solution&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;@me in replies or I'll lose your thread&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Want to check your DAX skills? &lt;A href="https://www.linkedin.com/company/kubisco/" target="_blank"&gt;Answer my biweekly DAX challenges on the kubisco Linkedin page&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Consider voting &lt;A href="https://community.fabric.microsoft.com/t5/Fabric-Ideas/Power-BI-Filter-Pane-as-an-icon-on-the-right-side-bar-in-on/idi-p/4728588" target="_blank"&gt;this Power BI idea&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Francesco Bergamaschi&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;MBA, M.Eng, M.Econ, Professor of BI&lt;/P&gt;</description>
      <pubDate>Mon, 01 Sep 2025 15:17:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Totals-are-wrong-in-Aggregation/m-p/4813696#M1431676</guid>
      <dc:creator>FBergamaschi</dc:creator>
      <dc:date>2025-09-01T15:17:53Z</dc:date>
    </item>
    <item>
      <title>Re: Totals are wrong in Aggregation</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Totals-are-wrong-in-Aggregation/m-p/4813915#M1431717</link>
      <description>&lt;P&gt;Your totals are wrong because SUMX(SUMMARIZE(...)) recalculates logic at the total level instead of summing row-level results.&lt;BR /&gt;&lt;STRONG&gt;&lt;span class="lia-unicode-emoji" title=":white_heavy_check_mark:"&gt;✅&lt;/span&gt; Fix:&lt;/STRONG&gt;&lt;BR /&gt;- Create a base measure that calculates the effect per row.&lt;BR /&gt;- Wrap it in a second measure that uses SUMX to aggregate those row-level results.&lt;BR /&gt;This ensures correct totals by summing pre-calculated values instead of re-evaluating logic in total context.&lt;/P&gt;</description>
      <pubDate>Tue, 02 Sep 2025 03:47:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Totals-are-wrong-in-Aggregation/m-p/4813915#M1431717</guid>
      <dc:creator>Shahid12523</dc:creator>
      <dc:date>2025-09-02T03:47:11Z</dc:date>
    </item>
    <item>
      <title>Re: Totals are wrong in Aggregation</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Totals-are-wrong-in-Aggregation/m-p/4814529#M1431887</link>
      <description>&lt;P&gt;Sorry, I do not get it. I have tried to build up different Measures, but none works.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;This is my Measure, where I got the right row-results:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Price Effect = 
IF([FocusMT]&amp;gt;0 &amp;amp;&amp;amp; [CompMT]&amp;gt;0,
([NSPFocus_LC] - [NSPComp_LC]) * [FX_Rate_CompPeriod] * [FocusMT] * 1000,BLANK())&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;BR /&gt;These are my further Measures:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;NSPComp_LC = DIVIDE([CompNS],[CompMT],0)/1000&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;NSPFocus_LC = DIVIDE([FocusNS],[FocusMT],0)/1000&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;FocusNS = 
VAR FocusScenarioSel = SELECTEDVALUE(FocusScenario[Focus Scenario])
VAR FocusYearSel     = SELECTEDVALUE(GemeinsameJahre[Year])
RETURN
CALCULATE(
    SUM('Sales Data'[Net Sales]),
    'Sales Data'[Scenario] = FocusScenarioSel,
    'Sales Data'[Year] = FocusYearSel
)&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;CompNS = 
VAR CompScenarioSel = SELECTEDVALUE('Comparison Selector'[Compared to])
VAR FocusScenario = SELECTEDVALUE(FocusScenario[Focus Scenario])
VAR FocusYear = SELECTEDVALUE(GemeinsameJahre[Year])

VAR CompScenario =
    SWITCH(
        CompScenarioSel,
        "Budget", "Budget",
        "Prior Year", FocusScenario,
        BLANK()
    )

VAR CompYear =
    SWITCH(
        CompScenarioSel,
        "Budget", FocusYear,
        "Prior Year", FocusYear - 1,
        BLANK()
    )

RETURN
CALCULATE(
    SUM('Sales Data'[Net Sales]),
    'Sales Data'[Scenario] = CompScenario,
    'Sales Data'[Year] = CompYear
)&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;CompMT = 
VAR CompScenarioSel = SELECTEDVALUE('Comparison Selector'[Compared to])
VAR FocusScenario   = SELECTEDVALUE(FocusScenario[Focus Scenario])
VAR FocusYear       = SELECTEDVALUE(GemeinsameJahre[Year])
VAR TargetScenario  = 
    SWITCH(
        CompScenarioSel,
        "Budget", "Budget",
        "Prior Year", FocusScenario
    )
VAR TargetYear =
    SWITCH(
        CompScenarioSel,
        "Budget", FocusYear,
        "Prior Year", FocusYear - 1
    )
RETURN
CALCULATE(
    SUM('Sales Data'[Sales Reported]),
    'Sales Data'[Scenario] = TargetScenario,
    'Sales Data'[Year] = TargetYear
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;FocusMT = CALCULATE(
    SUM('Sales Data'[Sales Reported]),
    TREATAS(VALUES(FocusScenario[Focus Scenario]), 'Sales Data'[Scenario]),
    TREATAS(VALUES(GemeinsameJahre[Year]), 'Sales Data'[Year])
)&lt;/LI-CODE&gt;&lt;LI-CODE lang="markup"&gt;FX_Rate_CompPeriod = 
AVERAGEX(
    FILTER(
        'Sales Data',
        'Sales Data'[Scenario] = SELECTEDVALUE(FocusScenario[Focus Scenario]) &amp;amp;&amp;amp;
        'Sales Data'[Year] = SELECTEDVALUE(GemeinsameJahre[Year])
    ),
    VAR InvoicingCurrency = 'Sales Data'[Inv Currency]
    VAR CompMonth = 'Sales Data'[Posting period]

    // Vergleichsszenario &amp;amp; -jahr bestimmen
    VAR CompScenarioSel = SELECTEDVALUE('Comparison Selector'[Compared to])
    VAR FocusScenario = SELECTEDVALUE(FocusScenario[Focus Scenario])
    VAR FocusYear = SELECTEDVALUE(GemeinsameJahre[Year])

    VAR CompScenario =
        SWITCH(
            CompScenarioSel,
            "Budget", "Budget",
            "Prior Year", FocusScenario
        )

    VAR CompYear =
        SWITCH(
            CompScenarioSel,
            "Budget", FocusYear,
            "Prior Year", FocusYear - 1
        )

    VAR ReportCurrency = SELECTEDVALUE('Currency Selector'[Currency], "EUR")
    VAR Period = CompMonth &amp;amp; CompYear &amp;amp; CompScenario

    // FX Invoicing → USD
    VAR FX_InvToUSD =
        LOOKUPVALUE(
            'Exchange Rates Master'[average FX Rate],
            'Exchange Rates Master'[USD vs.], InvoicingCurrency,
            'Exchange Rates Master'[PeriodYearScen], Period
        )

    // FX USD → Reporting Currency
    VAR FX_USDToReport =
        LOOKUPVALUE(
            'Exchange Rates Master'[average FX Rate],
            'Exchange Rates Master'[USD vs.], ReportCurrency,
            'Exchange Rates Master'[PeriodYearScen], Period
        )

    RETURN DIVIDE(FX_InvToUSD, FX_USDToReport)
)&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 02 Sep 2025 11:36:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Totals-are-wrong-in-Aggregation/m-p/4814529#M1431887</guid>
      <dc:creator>Pfoster</dc:creator>
      <dc:date>2025-09-02T11:36:35Z</dc:date>
    </item>
    <item>
      <title>Re: Totals are wrong in Aggregation</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Totals-are-wrong-in-Aggregation/m-p/4816862#M1432439</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1260252" data-lia-user-login="Pfoster" class="lia-mention lia-mention-user"&gt;Pfoster&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Make sure filters and relationships between tables are set up correctly, as these can affect totals.&lt;/SPAN&gt;&lt;BR /&gt;You can refer a similar thread here-&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/Desktop/Wrong-or-incorrect-total-sums-problem-with-aggregation-of-data/td-p/1623904" target="_blank"&gt;Solved: Wrong or incorrect total sums / problem with aggre... - Microsoft Fabric Community&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;Hope this helps!&lt;/P&gt;</description>
      <pubDate>Thu, 04 Sep 2025 12:02:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Totals-are-wrong-in-Aggregation/m-p/4816862#M1432439</guid>
      <dc:creator>v-sdhruv</dc:creator>
      <dc:date>2025-09-04T12:02:21Z</dc:date>
    </item>
    <item>
      <title>Re: Totals are wrong in Aggregation</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Totals-are-wrong-in-Aggregation/m-p/4821394#M1433494</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1260252" data-lia-user-login="Pfoster" class="lia-mention lia-mention-user"&gt;Pfoster&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN data-teams="true"&gt;Just wanted to check if you got a chance to review the suggestions provided and whether that helped you resolve your query?&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;Thank you for using Microsoft Community Forum&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Sep 2025 12:22:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Totals-are-wrong-in-Aggregation/m-p/4821394#M1433494</guid>
      <dc:creator>v-sdhruv</dc:creator>
      <dc:date>2025-09-09T12:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: Totals are wrong in Aggregation</title>
      <link>https://community.fabric.microsoft.com/t5/Desktop/Totals-are-wrong-in-Aggregation/m-p/4825111#M1434377</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="1260252" data-lia-user-login="Pfoster" class="lia-mention lia-mention-user"&gt;Pfoster&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;SPAN data-teams="true"&gt;I hope the explaination provided, has addressed your query.&lt;BR /&gt;Since we didnt hear back, we would be closing this thread.&lt;BR /&gt;If you need any assistance, feel free to reach out.&lt;BR /&gt;&lt;BR /&gt;Thank you&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 13 Sep 2025 12:52:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Desktop/Totals-are-wrong-in-Aggregation/m-p/4825111#M1434377</guid>
      <dc:creator>v-sdhruv</dc:creator>
      <dc:date>2025-09-13T12:52:17Z</dc:date>
    </item>
  </channel>
</rss>

