<?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: power bi report builder (grouping inside list option) in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/power-bi-report-builder-grouping-inside-list-option/m-p/4909520#M64206</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1481591"&gt;@Adarsh_007&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;I wanted to check if you had the opportunity to review the valuable information provided by &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/838901"&gt;@Ahmed-Elfeel&lt;/a&gt;&amp;nbsp; and &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1254590"&gt;@Amar_Kumar&lt;/a&gt;&amp;nbsp;. Please feel free to contact us if you have any further questions.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
    <pubDate>Mon, 29 Dec 2025 03:41:28 GMT</pubDate>
    <dc:creator>v-nmadadi-msft</dc:creator>
    <dc:date>2025-12-29T03:41:28Z</dc:date>
    <item>
      <title>power bi report builder (grouping inside list option)</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/power-bi-report-builder-grouping-inside-list-option/m-p/4908167#M64187</link>
      <description>&lt;P&gt;Hey all!!! how to group table based on specific condition inside list in power bi report builder?&lt;/P&gt;</description>
      <pubDate>Wed, 24 Dec 2025 10:35:10 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/power-bi-report-builder-grouping-inside-list-option/m-p/4908167#M64187</guid>
      <dc:creator>Adarsh_007</dc:creator>
      <dc:date>2025-12-24T10:35:10Z</dc:date>
    </item>
    <item>
      <title>Re: power bi report builder (grouping inside list option)</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/power-bi-report-builder-grouping-inside-list-option/m-p/4908346#M64190</link>
      <description>&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1481591"&gt;@Adarsh_007&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In Power BI Report Builder, you group by using an expression in the Group field.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Example:&lt;BR /&gt;You want to group values based on a condition inside a list.&lt;/P&gt;&lt;P&gt;Steps:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;Right-click the table then Row Groups then Add Group then Parent Group&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Choose Group by then Expression&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Use an expression like this:&lt;/P&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;=IIF(Fields!Status.Value IN ("A","B","C"),"Group 1","Group 2")&lt;/P&gt;&lt;P&gt;This groups rows where Status is A, B, or C into Group 1, and everything else into Group 2. Another example with numeric condition:&lt;/P&gt;&lt;P&gt;=IIF(Fields!Amount.Value &amp;gt; 1000, "High","Low")&lt;/P&gt;&lt;P&gt;You can also use SWITCH:&lt;/P&gt;&lt;P&gt;=SWITCH(TRUE,&lt;BR /&gt;Fields!Score.Value &amp;gt;= 80, "Good",&lt;BR /&gt;Fields!Score.Value &amp;gt;= 50, "Average","Poor")&lt;/P&gt;</description>
      <pubDate>Wed, 24 Dec 2025 18:30:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/power-bi-report-builder-grouping-inside-list-option/m-p/4908346#M64190</guid>
      <dc:creator>Amar_Kumar</dc:creator>
      <dc:date>2025-12-24T18:30:01Z</dc:date>
    </item>
    <item>
      <title>Re: power bi report builder (grouping inside list option)</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/power-bi-report-builder-grouping-inside-list-option/m-p/4908603#M64193</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1481591"&gt;@Adarsh_007&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;I hope you are doing well today ☺️&lt;span class="lia-unicode-emoji" title=":red_heart:"&gt;❤️&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt; to group rows in your Table (Tablix)&lt;/FONT&gt; &lt;/STRONG&gt;based &lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;on a condition&lt;/FONT&gt; &lt;/STRONG&gt;inside a List you need to:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;P&gt;Insert Your Table Inside the List&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Drag a List control into your report body.&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Bind it to a dataset (your main dataset)&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Drag a Table into the List (this is where you will show the rows detail)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;Add the Group to the Table&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;P&gt;Right click on the table &amp;gt; Row Groups area &amp;gt; Add Group &amp;gt; Parent Group&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;P&gt;In the Group by expression box enter a conditional expression (that defines how you want to group records) like:&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;LI-CODE lang="markup"&gt;=IIF(Fields!Status.Value IN ("A","B","C"), "Group 1", "Other Groups")&lt;/LI-CODE&gt;&lt;UL&gt;&lt;LI&gt;Finally &lt;FONT color="#FF9900"&gt;&lt;STRONG&gt;run&lt;/STRONG&gt; &lt;/FONT&gt;or &lt;FONT color="#99CC00"&gt;&lt;STRONG&gt;preview&lt;/STRONG&gt; &lt;/FONT&gt;your report to confirm that the table data is grouped correctly based on the condition you specified&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#FF6600"&gt;Mi&lt;/FONT&gt;&lt;FONT color="#99CC00"&gt;cr&lt;/FONT&gt;&lt;FONT color="#33CCCC"&gt;o&lt;/FONT&gt;&lt;FONT color="#FFCC00"&gt;soft&lt;/FONT&gt; &lt;FONT color="#0000FF"&gt;Le&lt;/FONT&gt;&lt;FONT color="#3366FF"&gt;arn&lt;/FONT&gt; &lt;FONT color="#99CC00"&gt;Resources&lt;/FONT&gt; &lt;/STRONG&gt;(More Detailed Than Me):&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;&lt;A href="https://learn.microsoft.com/en-us/power-bi/paginated-reports/expressions/group-expression-examples-report-builder" target="_self"&gt;Group expression examples in paginated reports (Power BI Report Builder)&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://learn.microsoft.com/en-us/power-bi/paginated-reports/report-design/add-delete-group-data-region-report-builder" target="_self"&gt;Add or delete a group in a data region in a paginated report (Power BI Report Builder)&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV&gt;&lt;SPAN&gt;&lt;EM&gt;if this post helps, then I would appreciate a thumbs up&lt;/EM&gt;&lt;EM&gt;&amp;nbsp;&lt;/EM&gt;&lt;EM&gt;and&amp;nbsp;&lt;STRONG&gt;mark it as the solution&lt;/STRONG&gt;&amp;nbsp;&lt;/EM&gt;&lt;EM&gt;to help the other members find it more quickly.&lt;/EM&gt;&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 26 Dec 2025 01:37:42 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/power-bi-report-builder-grouping-inside-list-option/m-p/4908603#M64193</guid>
      <dc:creator>Ahmed-Elfeel</dc:creator>
      <dc:date>2025-12-26T01:37:42Z</dc:date>
    </item>
    <item>
      <title>Re: power bi report builder (grouping inside list option)</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/power-bi-report-builder-grouping-inside-list-option/m-p/4909520#M64206</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1481591"&gt;@Adarsh_007&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;I wanted to check if you had the opportunity to review the valuable information provided by &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/838901"&gt;@Ahmed-Elfeel&lt;/a&gt;&amp;nbsp; and &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1254590"&gt;@Amar_Kumar&lt;/a&gt;&amp;nbsp;. Please feel free to contact us if you have any further questions.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Dec 2025 03:41:28 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/power-bi-report-builder-grouping-inside-list-option/m-p/4909520#M64206</guid>
      <dc:creator>v-nmadadi-msft</dc:creator>
      <dc:date>2025-12-29T03:41:28Z</dc:date>
    </item>
    <item>
      <title>Re: power bi report builder (grouping inside list option)</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/power-bi-report-builder-grouping-inside-list-option/m-p/4911365#M64250</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1481591"&gt;@Adarsh_007&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;May I check if this issue has been resolved? If not, Please feel free to contact us if you have any further questions.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jan 2026 05:34:43 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/power-bi-report-builder-grouping-inside-list-option/m-p/4911365#M64250</guid>
      <dc:creator>v-nmadadi-msft</dc:creator>
      <dc:date>2026-01-02T05:34:43Z</dc:date>
    </item>
    <item>
      <title>Re: power bi report builder (grouping inside list option)</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/power-bi-report-builder-grouping-inside-list-option/m-p/4911513#M64254</link>
      <description>&lt;P&gt;no not yet, since i cannot able to implement the detail section of table into the list of power bi report builder, it showing that only values in a single cell of the table can be depicted. not the detail section.&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jan 2026 11:23:27 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/power-bi-report-builder-grouping-inside-list-option/m-p/4911513#M64254</guid>
      <dc:creator>Adarsh_007</dc:creator>
      <dc:date>2026-01-02T11:23:27Z</dc:date>
    </item>
    <item>
      <title>Re: power bi report builder (grouping inside list option)</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/power-bi-report-builder-grouping-inside-list-option/m-p/4911516#M64255</link>
      <description>&lt;P&gt;I tried to add the table inside the list of the power bi report builder, for me it's showing that detail section (i.e where data is populating below headers of the table) can't be supported inside the list. Can you help me in knowing whether it is possible or not and if yes then how?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jan 2026 11:26:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/power-bi-report-builder-grouping-inside-list-option/m-p/4911516#M64255</guid>
      <dc:creator>Adarsh_007</dc:creator>
      <dc:date>2026-01-02T11:26:36Z</dc:date>
    </item>
    <item>
      <title>Re: power bi report builder (grouping inside list option)</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/power-bi-report-builder-grouping-inside-list-option/m-p/4911517#M64256</link>
      <description>&lt;P&gt;I tried to add the table inside the list of the power bi report builder, for me it's showing that detail section (i.e where data is populating below headers of the table) can't be supported inside the list. Can you help me in knowing whether it is possible or not and if yes then how?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jan 2026 11:28:14 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/power-bi-report-builder-grouping-inside-list-option/m-p/4911517#M64256</guid>
      <dc:creator>Adarsh_007</dc:creator>
      <dc:date>2026-01-02T11:28:14Z</dc:date>
    </item>
    <item>
      <title>Re: power bi report builder (grouping inside list option)</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/power-bi-report-builder-grouping-inside-list-option/m-p/4912496#M64286</link>
      <description>&lt;P&gt;Hi&amp;nbsp; &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1481591"&gt;@Adarsh_007&lt;/a&gt;&amp;nbsp;, &lt;BR /&gt;Thanks for reaching out to the Microsoft Fabric Community forum.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you want to work with List in Power BI Report Builder,&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vnmadadimsft_0-1767614216513.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1319534iDA4803DD36988DF4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vnmadadimsft_0-1767614216513.png" alt="vnmadadimsft_0-1767614216513.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Click on insert and then on List and then add it to the canvas.&lt;BR /&gt;&lt;BR /&gt;From Dataset, Drag any of the datafield into the list&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vnmadadimsft_1-1767614225764.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1319535iB7A338FCDC80DC7E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vnmadadimsft_1-1767614225764.png" alt="vnmadadimsft_1-1767614225764.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Once that is done&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vnmadadimsft_2-1767614237283.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1319537i6232C1A8042AD762/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vnmadadimsft_2-1767614237283.png" alt="vnmadadimsft_2-1767614237283.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Go to Row groups, click on details -&amp;gt; add group -&amp;gt; parent group&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vnmadadimsft_3-1767614237284.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1319536iAC77E4BFE44AD6AE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vnmadadimsft_3-1767614237284.png" alt="vnmadadimsft_3-1767614237284.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;That will ensure this window pops up, choose the group by column which is suitable as per your data and then click ok.&lt;/P&gt;
&lt;P&gt;Click on Run, you will then get the expected output.&lt;BR /&gt;&lt;BR /&gt;Sample:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vnmadadimsft_4-1767614248125.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1319538iB16AC52E5B8FB0D5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vnmadadimsft_4-1767614248125.png" alt="vnmadadimsft_4-1767614248125.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;&lt;BR /&gt;&lt;BR /&gt;I hope this information helps. Please do let us know if you have any further queries.&lt;BR /&gt;Thank you&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jan 2026 11:57:49 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/power-bi-report-builder-grouping-inside-list-option/m-p/4912496#M64286</guid>
      <dc:creator>v-nmadadi-msft</dc:creator>
      <dc:date>2026-01-05T11:57:49Z</dc:date>
    </item>
    <item>
      <title>Re: power bi report builder (grouping inside list option)</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/power-bi-report-builder-grouping-inside-list-option/m-p/4912505#M64287</link>
      <description>&lt;P&gt;can we add a table with details row in it inside the list? and then can we apply "group by" over rows of the table.?&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jan 2026 12:04:47 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/power-bi-report-builder-grouping-inside-list-option/m-p/4912505#M64287</guid>
      <dc:creator>Adarsh_007</dc:creator>
      <dc:date>2026-01-05T12:04:47Z</dc:date>
    </item>
    <item>
      <title>Re: power bi report builder (grouping inside list option)</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/power-bi-report-builder-grouping-inside-list-option/m-p/4913607#M64297</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1481591"&gt;@Adarsh_007&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can add the table inside the List using this method:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Click inside the List.&lt;/P&gt;
&lt;P&gt;Then right click inside the List area.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vnmadadimsft_0-1767762736463.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1319821i1062E9AAAC94DF1D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vnmadadimsft_0-1767762736463.png" alt="vnmadadimsft_0-1767762736463.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Choose Insert&amp;nbsp; Table and drop the table directly inside the List container.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jan 2026 05:13:02 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/power-bi-report-builder-grouping-inside-list-option/m-p/4913607#M64297</guid>
      <dc:creator>v-nmadadi-msft</dc:creator>
      <dc:date>2026-01-07T05:13:02Z</dc:date>
    </item>
  </channel>
</rss>

