<?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: Add Button to Filter Based on a Column in Report Server</title>
    <link>https://community.fabric.microsoft.com/t5/Report-Server/Add-Button-to-Filter-Based-on-a-Column/m-p/4785665#M41550</link>
    <description>&lt;P&gt;Hi LJL123,&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We are following up to see if what we shared solved your issue. If you need more support, please reach out to the Microsoft Fabric community.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 03 Aug 2025 16:07:32 GMT</pubDate>
    <dc:creator>v-pnaroju-msft</dc:creator>
    <dc:date>2025-08-03T16:07:32Z</dc:date>
    <item>
      <title>Add Button to Filter Based on a Column</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Add-Button-to-Filter-Based-on-a-Column/m-p/4776352#M41483</link>
      <description>&lt;P&gt;I want to add a button to my report that will filter out any rows on the report where the column titled "Active" = "No." How can I do this? I've tried with bookmarks but it doesn't seem to work...&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jul 2025 11:53:18 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Add-Button-to-Filter-Based-on-a-Column/m-p/4776352#M41483</guid>
      <dc:creator>LJL123</dc:creator>
      <dc:date>2025-07-25T11:53:18Z</dc:date>
    </item>
    <item>
      <title>Re: Add Button to Filter Based on a Column</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Add-Button-to-Filter-Based-on-a-Column/m-p/4776461#M41484</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1320455"&gt;@LJL123&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Not sure if I understand your question 100%, did you mean you have&amp;nbsp;column/field in a table whose name is "Active" as in below picture and you would want to a&lt;SPAN&gt;dd button to filter out the rows that are 'No'?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="IMG_3121.jpeg" style="width: 200px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1286199i2237ACFB6406998D/image-size/small?v=v2&amp;amp;px=200" role="button" title="IMG_3121.jpeg" alt="IMG_3121.jpeg" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;If this is what you are looking for, consider&amp;nbsp;using 'Button Slicer'.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="MasonMA_0-1753448983761.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1286216i1699C27BAD860A34/image-size/medium?v=v2&amp;amp;px=400" role="button" title="MasonMA_0-1753448983761.png" alt="MasonMA_0-1753448983761.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Hope this helps:)&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jul 2025 13:10:21 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Add-Button-to-Filter-Based-on-a-Column/m-p/4776461#M41484</guid>
      <dc:creator>MasonMA</dc:creator>
      <dc:date>2025-07-25T13:10:21Z</dc:date>
    </item>
    <item>
      <title>Re: Add Button to Filter Based on a Column</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Add-Button-to-Filter-Based-on-a-Column/m-p/4777221#M41489</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&amp;nbsp;,Bookmarks only store the state of visuals, including slicer selections, but &lt;STRONG&gt;can’t directly filter rows based on a column’s value unless paired with a slicer or another filtering mechanism. Try the following&amp;nbsp;approach using a DAX measure and a button to toggle the filter:&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;
&lt;P&gt;Create a new table for filter control:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=""&gt;ActiveFilter = DATATABLE("Show Active Only", STRING, {{"Yes"}, {"All"}})&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Create a slicer on your report using the ActiveFilter[Show Active Only] column.&lt;/STRONG&gt;&lt;/P&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Create a DAX measure to control visibility:&lt;/STRONG&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=""&gt;ShowRows = 
VAR SelectedValue = SELECTEDVALUE('ActiveFilter'[Show Active Only], "All")
RETURN
    IF(
        SelectedValue = "Yes" &amp;amp;&amp;amp; 'YourTable'[Active] = "No",
        BLANK(),
        1
    )&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;
&lt;P&gt;&lt;STRONG&gt;Apply this measure as a visual-level filter to all visuals you want to control:&lt;/STRONG&gt;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;
&lt;P&gt;Set the filter to "ShowRows is 1".&lt;/P&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG style="font-family: inherit;"&gt;If you found this solution helpful, please consider accepting it and giving it a kudos (Like) it’s greatly appreciated and helps others find the solution more easily.&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Best Regards,&lt;BR /&gt;&lt;A href="https://www.linkedin.com/in/nasif-azam-9aa2331a0/" target="_blank" rel="noopener nofollow noreferrer"&gt;Nasif Azam&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 26 Jul 2025 16:36:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Add-Button-to-Filter-Based-on-a-Column/m-p/4777221#M41489</guid>
      <dc:creator>Nasif_Azam</dc:creator>
      <dc:date>2025-07-26T16:36:17Z</dc:date>
    </item>
    <item>
      <title>Re: Add Button to Filter Based on a Column</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Add-Button-to-Filter-Based-on-a-Column/m-p/4778296#M41497</link>
      <description>&lt;P&gt;Thankyou,&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/903292"&gt;@MasonMA&lt;/a&gt;,&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/871356"&gt;@Nasif_Azam&lt;/a&gt;, for your response.&lt;BR /&gt;&lt;BR /&gt;Hi LJL123,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;We appreciate your query posted on the Microsoft Fabric Community Forum.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Based on my understanding of the issue, please find attached screenshots and a sample PBIX file demonstrating the use of bookmark based buttons to toggle a slicer filter that hides rows where the Active column is set to “No.” We have utilized two buttons with bookmarks to toggle the slicer selection on the Active column for “Yes” and “All,” which dynamically show or hide rows according to the user’s selection.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vpnarojumsft_0-1753694580525.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1286605iA8762F33D0C35B6C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vpnarojumsft_0-1753694580525.png" alt="vpnarojumsft_0-1753694580525.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vpnarojumsft_1-1753694590823.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1286607i08AC02EC5B6D2F45/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vpnarojumsft_1-1753694590823.png" alt="vpnarojumsft_1-1753694590823.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;We hope that the information provided will help resolve the issue. Should you have any further questions, please do not hesitate to reach out to the Microsoft Fabric Community.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jul 2025 09:26:37 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Add-Button-to-Filter-Based-on-a-Column/m-p/4778296#M41497</guid>
      <dc:creator>v-pnaroju-msft</dc:creator>
      <dc:date>2025-07-28T09:26:37Z</dc:date>
    </item>
    <item>
      <title>Re: Add Button to Filter Based on a Column</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Add-Button-to-Filter-Based-on-a-Column/m-p/4782572#M41525</link>
      <description>&lt;P&gt;Hi LJL123,&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We would like to follow up and see whether the details we shared have resolved your problem.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If you need any more assistance, please feel free to connect with the Microsoft Fabric community.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 31 Jul 2025 07:45:41 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Add-Button-to-Filter-Based-on-a-Column/m-p/4782572#M41525</guid>
      <dc:creator>v-pnaroju-msft</dc:creator>
      <dc:date>2025-07-31T07:45:41Z</dc:date>
    </item>
    <item>
      <title>Re: Add Button to Filter Based on a Column</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Add-Button-to-Filter-Based-on-a-Column/m-p/4785665#M41550</link>
      <description>&lt;P&gt;Hi LJL123,&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We are following up to see if what we shared solved your issue. If you need more support, please reach out to the Microsoft Fabric community.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 03 Aug 2025 16:07:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Add-Button-to-Filter-Based-on-a-Column/m-p/4785665#M41550</guid>
      <dc:creator>v-pnaroju-msft</dc:creator>
      <dc:date>2025-08-03T16:07:32Z</dc:date>
    </item>
    <item>
      <title>Re: Add Button to Filter Based on a Column</title>
      <link>https://community.fabric.microsoft.com/t5/Report-Server/Add-Button-to-Filter-Based-on-a-Column/m-p/4789308#M41584</link>
      <description>&lt;P&gt;Hi LJL123,&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We wanted to see if the information we gave helped fix your problem. If you need more help, please feel free to contact the Microsoft Fabric community.&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;&lt;BR /&gt;Thank you.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 06 Aug 2025 19:28:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Report-Server/Add-Button-to-Filter-Based-on-a-Column/m-p/4789308#M41584</guid>
      <dc:creator>v-pnaroju-msft</dc:creator>
      <dc:date>2025-08-06T19:28:55Z</dc:date>
    </item>
  </channel>
</rss>

