<?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: Need Help with DAX Formula to combine rows in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Help-with-DAX-Formula-to-combine-rows/m-p/4862575#M185474</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="507215" data-lia-user-login="rizkus" class="lia-mention lia-mention-user"&gt;rizkus&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can produce your required output by writing a measure like below:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Combined Value = 
VAR _totalForID =
    CALCULATE (
        SUM ( Data[Value Measure] ),
        ALLEXCEPT ( Data, Data[ID] )
    )
VAR _topSegment =
    CALCULATE (
        SELECTEDVALUE ( SegmentRank[Segment] ),
        SegmentRank[Rank] = 1
    )
VAR _currentSegment =
    SELECTEDVALUE ( Data[Segment] )
RETURN
    IF (
        _currentSegment = _topSegment,
        _totalForID
    )&lt;/LI-CODE&gt;
&lt;P&gt;Then, you can put the measure along with the fields in the fact and dimension tables in a table visual as shown below:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;I am attaching the pbix file for your reference.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 30 Oct 2025 14:17:14 GMT</pubDate>
    <dc:creator>DataNinja777</dc:creator>
    <dc:date>2025-10-30T14:17:14Z</dc:date>
    <item>
      <title>Need Help with DAX Formula to combine rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Help-with-DAX-Formula-to-combine-rows/m-p/4862252#M185464</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am looking for help in regards to the data i have. currently i have this type of data&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;And then i have created a rank to categorize the order of the segment, as below&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;the outcome expected is a table, showing only the highest rank (in this case, segment B), but the Value Measure is added altogether:&lt;/P&gt;&lt;P&gt;&lt;img /&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I would also like to have it able to be filtered, so for example, if i filter segment A, it doesnt show any data anymore&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Need your help and appreciate all the help, thanks!&lt;/P&gt;</description>
      <pubDate>Thu, 30 Oct 2025 09:27:57 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Help-with-DAX-Formula-to-combine-rows/m-p/4862252#M185464</guid>
      <dc:creator>rizkus</dc:creator>
      <dc:date>2025-10-30T09:27:57Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help with DAX Formula to combine rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Help-with-DAX-Formula-to-combine-rows/m-p/4862575#M185474</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="507215" data-lia-user-login="rizkus" class="lia-mention lia-mention-user"&gt;rizkus&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can produce your required output by writing a measure like below:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Combined Value = 
VAR _totalForID =
    CALCULATE (
        SUM ( Data[Value Measure] ),
        ALLEXCEPT ( Data, Data[ID] )
    )
VAR _topSegment =
    CALCULATE (
        SELECTEDVALUE ( SegmentRank[Segment] ),
        SegmentRank[Rank] = 1
    )
VAR _currentSegment =
    SELECTEDVALUE ( Data[Segment] )
RETURN
    IF (
        _currentSegment = _topSegment,
        _totalForID
    )&lt;/LI-CODE&gt;
&lt;P&gt;Then, you can put the measure along with the fields in the fact and dimension tables in a table visual as shown below:&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;I am attaching the pbix file for your reference.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 30 Oct 2025 14:17:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Help-with-DAX-Formula-to-combine-rows/m-p/4862575#M185474</guid>
      <dc:creator>DataNinja777</dc:creator>
      <dc:date>2025-10-30T14:17:14Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help with DAX Formula to combine rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Help-with-DAX-Formula-to-combine-rows/m-p/4862586#M185476</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;thanks so much! quick question, if i filter the segment as "A", will it show?&lt;/P&gt;</description>
      <pubDate>Thu, 30 Oct 2025 14:24:11 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Help-with-DAX-Formula-to-combine-rows/m-p/4862586#M185476</guid>
      <dc:creator>rizkus</dc:creator>
      <dc:date>2025-10-30T14:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help with DAX Formula to combine rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Help-with-DAX-Formula-to-combine-rows/m-p/4863256#M185494</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="507215" data-lia-user-login="rizkus" class="lia-mention lia-mention-user"&gt;rizkus&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I reviewed your requirement and tested it using&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="608865" data-lia-user-login="DataNinja777" class="lia-mention lia-mention-user"&gt;DataNinja777&lt;/a&gt;&amp;nbsp; sample PBIX file. When I selected Segment A in the filter, the visual displayed blank values. This behavior is expected because the DAX measure is designed to return results only for the top ranked segment (Rank = 1) within each ID. In your dataset, Segment A does not hold the highest rank, so the condition in the formula . IF ( _currentSegment = _topSegment, _totalForID ) evaluates to blank for that segment. Essentially, the measure aggregates and displays values only for the segment with the top rank, while all other lower ranked segments show no results when filtered.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;LI-WRAPPER&gt;&lt;SPAN data-teams="true"&gt;&amp;nbsp;Thank you and continue using Microsoft Fabric Community Forum&lt;BR /&gt;&lt;/SPAN&gt;&lt;/LI-WRAPPER&gt;Have a nice day ahead.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jan 2026 10:35:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Help-with-DAX-Formula-to-combine-rows/m-p/4863256#M185494</guid>
      <dc:creator>v-sgandrathi</dc:creator>
      <dc:date>2026-01-02T10:35:32Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help with DAX Formula to combine rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Help-with-DAX-Formula-to-combine-rows/m-p/4864791#M185531</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="507215" data-lia-user-login="rizkus" class="lia-mention lia-mention-user"&gt;rizkus&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;Just wanted to follow up and confirm that everything has been going well on this. Please let me know if there’s anything from our end.&lt;BR /&gt;Please feel free to reach out Microsoft fabric community forum.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 03 Nov 2025 09:40:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Help-with-DAX-Formula-to-combine-rows/m-p/4864791#M185531</guid>
      <dc:creator>v-sgandrathi</dc:creator>
      <dc:date>2025-11-03T09:40:49Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help with DAX Formula to combine rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Help-with-DAX-Formula-to-combine-rows/m-p/4867668#M185598</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="507215" data-lia-user-login="rizkus" class="lia-mention lia-mention-user"&gt;rizkus&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;Just wanted to follow up and confirm that everything has been going well on this. Please let me know if there’s anything from our end.&lt;BR /&gt;Please feel free to reach out Microsoft fabric community forum.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN data-teams="true"&gt;Thankyou.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Nov 2025 06:58:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Help-with-DAX-Formula-to-combine-rows/m-p/4867668#M185598</guid>
      <dc:creator>v-sgandrathi</dc:creator>
      <dc:date>2025-11-06T06:58:00Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help with DAX Formula to combine rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Help-with-DAX-Formula-to-combine-rows/m-p/4881339#M185979</link>
      <description>&lt;P&gt;Hi ,&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="507215" data-lia-user-login="rizkus" class="lia-mention lia-mention-user"&gt;rizkus&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Try like this Please!!&lt;/P&gt;&lt;H3&gt;First you need to do total measure value&lt;/H3&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN&gt;Total Value = SUM(Data[Value])&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;H3&gt;Then find the Top Rank Value&lt;/H3&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN&gt;Top Rank = MIN(Data[Rank])&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;H3&gt;Then show Total fo top Segments&lt;/H3&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;&lt;SPAN&gt;Top Segment = IF(Data[Rank]=[Top Rank], [Total Value],BLANK())&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 20 Nov 2025 17:18:19 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Help-with-DAX-Formula-to-combine-rows/m-p/4881339#M185979</guid>
      <dc:creator>sayan_07</dc:creator>
      <dc:date>2025-11-20T17:18:19Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help with DAX Formula to combine rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Help-with-DAX-Formula-to-combine-rows/m-p/4889414#M186151</link>
      <description>&lt;P&gt;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="507215" data-lia-user-login="rizkus" class="lia-mention lia-mention-user"&gt;rizkus&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Apart from&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="608865" data-lia-user-login="DataNinja777" class="lia-mention lia-mention-user"&gt;DataNinja777&lt;/a&gt;&amp;nbsp; solution, Alternatively, you can use below tiny DAX code&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Value Measure = 
VAR _Rank = 
RANKX( ALL( 'Table'[Segment]),CALCULATE( SUM( 'Table'[ValueMeasure])),,DESC)
VAR _Result = 
IF(
    _Rank =1,
    CALCULATE( SUM( 'Table'[ValueMeasure]), ALL( )
    ) ,BLANK()
)
RETURN
_Result&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Below screenshots&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;when you select Segment A&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Hopt it helps&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;sanalytics&lt;/P&gt;</description>
      <pubDate>Mon, 01 Dec 2025 07:47:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Help-with-DAX-Formula-to-combine-rows/m-p/4889414#M186151</guid>
      <dc:creator>sanalytics</dc:creator>
      <dc:date>2025-12-01T07:47:35Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help with DAX Formula to combine rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Help-with-DAX-Formula-to-combine-rows/m-p/4891318#M186201</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="507215" data-lia-user-login="rizkus" class="lia-mention lia-mention-user"&gt;rizkus&lt;/a&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks for your question!&lt;BR /&gt;I have recreated your scenario and here’s the full explanation.&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;DataTable:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;ID Segment Value Measure &lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN&gt;123&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;&lt;SPAN&gt;A&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;&lt;SPAN&gt;100&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN&gt;123&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;&lt;SPAN&gt;B&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;&lt;SPAN&gt;200&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN&gt;123&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;&lt;SPAN&gt;B&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;&lt;SPAN&gt;300&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;RankTable:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;Segment Rank &lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN&gt;B&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;&lt;SPAN&gt;1&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;SPAN&gt;A&lt;/SPAN&gt;&lt;/TD&gt;&lt;TD&gt;&lt;SPAN&gt;2&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;TopSegmentTotal :=
IF (
    ISINSCOPE ( 'DataTable'[ID] ),
    VAR CurrentID =
        SELECTEDVALUE ( 'DataTable'[ID] )
    VAR TopRankForID =
        CALCULATE (
            MIN ( 'RankTable'[Rank] ),
            FILTER ( ALL ( 'DataTable' ), 'DataTable'[ID] = CurrentID )
        )
    VAR CurrentSegmentRank =
        MIN ( 'RankTable'[Rank] )
    VAR TotalForID =
        CALCULATE (
            SUM ( 'DataTable'[Value Measure] ),
            FILTER ( ALL ( 'DataTable' ), 'DataTable'[ID] = CurrentID )
        )
    RETURN
        IF (
            ISFILTERED ( 'DataTable'[Segment] )
                &amp;amp;&amp;amp; SELECTEDVALUE ( 'DataTable'[Segment] ) = "A",
            TotalForID,
            IF ( CurrentSegmentRank = TopRankForID, TotalForID )
        )
)&lt;/LI-CODE&gt;&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;Why the Difference&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;SPAN&gt;In your screenshot, Segment B had &lt;STRONG&gt;only one row (300)&lt;/STRONG&gt;, so the total was 300.&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;SPAN&gt;In my dataset, Segment B has &lt;STRONG&gt;two rows (200 + 300)&lt;/STRONG&gt;, so the total is 600.&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;SPAN&gt;The measure is correct, it always sums all values for the same ID and shows the total only on the top‑ranked segment.&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;H3&gt;Filtering Behavior&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;SPAN&gt;If you filter &lt;STRONG&gt;Segment B&lt;/STRONG&gt;, the measure shows the total (600).&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;SPAN&gt;If you filter &lt;STRONG&gt;Segment A&lt;/STRONG&gt;, the measure shows blank (unless you allow it to return the total for A).&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;SPAN&gt;If you want to show the raw row (300) instead of the total, use Value Measure directly and filter to that row.&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;H3&gt;Conclusion&lt;/H3&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;&lt;SPAN&gt;Use &lt;STRONG&gt;Value Measure&lt;/STRONG&gt; if you want to show raw rows (200 and 300 separately, or just 300).&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;SPAN&gt;Use &lt;STRONG&gt;TopSegmentTotal&lt;/STRONG&gt; if you want to show the combined total (600) for the top segment.&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;SPAN&gt;Both are correct , it depends on whether you want to display &lt;STRONG&gt;raw values&lt;/STRONG&gt; or the &lt;STRONG&gt;calculated total&lt;/STRONG&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;SPAN&gt;Slicers make it easy to toggle between segments and see how the measure behaves under filter&lt;/SPAN&gt;&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;&lt;img /&gt;&lt;img /&gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 03 Dec 2025 05:36:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Help-with-DAX-Formula-to-combine-rows/m-p/4891318#M186201</guid>
      <dc:creator>Olufemi7</dc:creator>
      <dc:date>2025-12-03T05:36:18Z</dc:date>
    </item>
    <item>
      <title>Re: Need Help with DAX Formula to combine rows</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Help-with-DAX-Formula-to-combine-rows/m-p/4892402#M186216</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="507215" data-lia-user-login="rizkus" class="lia-mention lia-mention-user"&gt;rizkus&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your answer&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="843006" data-lia-user-login="Olufemi7" class="lia-mention lia-mention-user"&gt;Olufemi7&lt;/a&gt;&lt;BR /&gt;&lt;BR /&gt;Checking in one last time to make sure all is good on your side. If there’s anything still outstanding or you need any further assistance, I’m here to help.&lt;BR /&gt;&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Dec 2025 04:27:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Need-Help-with-DAX-Formula-to-combine-rows/m-p/4892402#M186216</guid>
      <dc:creator>v-sgandrathi</dc:creator>
      <dc:date>2025-12-04T04:27:55Z</dc:date>
    </item>
  </channel>
</rss>

