<?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: How to implement the page level filter in a report. in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/How-to-implement-the-page-level-filter-in-a-report/m-p/4770421#M62288</link>
    <description>&lt;P&gt;Hi &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1287804"&gt;@SaikumarV&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;We would like to follow up to see if the solution provided by the super user resolved your issue. Please let us know if you need any further assistance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&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;Thanks,&lt;/P&gt;
&lt;P&gt;Prashanth Are&lt;/P&gt;
&lt;P&gt;MS Fabric community support&lt;/P&gt;</description>
    <pubDate>Mon, 21 Jul 2025 10:17:53 GMT</pubDate>
    <dc:creator>v-prasare</dc:creator>
    <dc:date>2025-07-21T10:17:53Z</dc:date>
    <item>
      <title>How to implement the page level filter in a report.</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-implement-the-page-level-filter-in-a-report/m-p/4755613#M62136</link>
      <description>&lt;P&gt;how to hide a filter page from a report where developer can see 3 pages but manager can see all pages from the report.How to implement this power bi&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jul 2025 16:50:00 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-implement-the-page-level-filter-in-a-report/m-p/4755613#M62136</guid>
      <dc:creator>SaikumarV</dc:creator>
      <dc:date>2025-07-07T16:50:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to implement the page level filter in a report.</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-implement-the-page-level-filter-in-a-report/m-p/4755770#M62138</link>
      <description>&lt;P&gt;Page level security DOES NOT EXIST. Try not to waste your time.&amp;nbsp; Use separate reports.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Jul 2025 20:45:40 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-implement-the-page-level-filter-in-a-report/m-p/4755770#M62138</guid>
      <dc:creator>lbendlin</dc:creator>
      <dc:date>2025-07-07T20:45:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to implement the page level filter in a report.</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-implement-the-page-level-filter-in-a-report/m-p/4760900#M62205</link>
      <description>&lt;P&gt;To show/hide pages based on user roles like Developer vs. Manager, use page navigation with RLS logic, because Power BI does not natively support page-level security.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Steps to Implement:&lt;/P&gt;&lt;P&gt;1. Create a Role Column in a Table:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Example: UserAccess table with columns: Username, Role&lt;/LI&gt;&lt;LI&gt;Add rows like:&lt;/LI&gt;&lt;/UL&gt;&lt;P class="lia-indent-padding-left-60px"&gt;&amp;nbsp; &amp;nbsp;ilgar@sample.com, Developer&lt;BR /&gt;&amp;nbsp; &amp;nbsp;qafur@sample.com,&amp;nbsp;Manager&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;2. Create an RLS Role:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Go to &lt;EM&gt;Modeling → Manage Roles&lt;/EM&gt;&lt;/LI&gt;&lt;LI&gt;Use DAX:&lt;/LI&gt;&lt;/UL&gt;&lt;LI-CODE lang="markup"&gt;[Username] = USERNAME()​&lt;/LI-CODE&gt;&lt;P&gt;Read my Article:&amp;nbsp;&lt;A href="https://www.linkedin.com/pulse/row-level-security-azepowerbicommunity-gqs4e/?trackingId=fdsyEb0CQhibpWlRSOMeUg%3D%3D" target="_blank" rel="noopener"&gt;https://www.linkedin.com/pulse/row-level-security-azepowerbicommunity-gqs4e/?trackingId=fdsyEb0CQhibpWlRSOMeUg%3D%3D&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;3. Create a Navigation Table:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;List your page names: "Main", "Manager Page", etc.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;4. Create a Navigation Button on Main Page:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Use conditional formatting to show/hide buttons or use a slicer-driven navigation logic:&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;LI-CODE lang="markup"&gt;ShowManagerPage = IF(SELECTEDVALUE(UserAccess[Role]) = "Manager", 1, 0)
​&lt;/LI-CODE&gt;&lt;P&gt;&lt;BR /&gt;5. Hide Sensitive Page:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Remove direct access via &lt;STRONG&gt;tabs&lt;/STRONG&gt;.&lt;/LI&gt;&lt;LI&gt;Add buttons only visible to &lt;STRONG&gt;Manager role&lt;/STRONG&gt; to navigate to the restricted page.&lt;/LI&gt;&lt;LI&gt;Use &lt;STRONG&gt;Bookmarks&lt;/STRONG&gt; + &lt;STRONG&gt;Selection Pane&lt;/STRONG&gt; to manage visibility.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This way, Managers can access all pages, but Developers won’t see buttons leading to restricted content — even though pages technically still exist in the report.&lt;/P&gt;</description>
      <pubDate>Sun, 13 Jul 2025 07:08:32 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-implement-the-page-level-filter-in-a-report/m-p/4760900#M62205</guid>
      <dc:creator>Ilgar_Zarbali</dc:creator>
      <dc:date>2025-07-13T07:08:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to implement the page level filter in a report.</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-implement-the-page-level-filter-in-a-report/m-p/4763088#M62220</link>
      <description>&lt;P&gt;We would like to follow up to see if the solution provided by the super user resolved your issue. Please let us know if you need any further assistance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/259082"&gt;@Ilgar_Zarbali&lt;/a&gt;,&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/100342"&gt;@lbendlin&lt;/a&gt;&amp;nbsp; Thanks for your prompt response&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;Thanks,&lt;/P&gt;
&lt;P&gt;Prashanth Are&lt;/P&gt;
&lt;P&gt;MS Fabric community support&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Jul 2025 06:34:09 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-implement-the-page-level-filter-in-a-report/m-p/4763088#M62220</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2025-07-15T06:34:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to implement the page level filter in a report.</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-implement-the-page-level-filter-in-a-report/m-p/4770421#M62288</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/1287804"&gt;@SaikumarV&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;We would like to follow up to see if the solution provided by the super user resolved your issue. Please let us know if you need any further assistance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&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;Thanks,&lt;/P&gt;
&lt;P&gt;Prashanth Are&lt;/P&gt;
&lt;P&gt;MS Fabric community support&lt;/P&gt;</description>
      <pubDate>Mon, 21 Jul 2025 10:17:53 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-implement-the-page-level-filter-in-a-report/m-p/4770421#M62288</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2025-07-21T10:17:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to implement the page level filter in a report.</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-implement-the-page-level-filter-in-a-report/m-p/4775509#M62320</link>
      <description>&lt;P&gt;May I ask if you have resolved this issue? If so, please mark the helpful reply and accept it as the solution. This will be helpful for other community members who have similar problems to solve it faster.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If we don’t hear back, we’ll go ahead and close this thread. For any further discussions or questions, please start a new thread in the Microsoft Fabric Community Forum we’ll be happy to assist.&lt;BR /&gt;Thank you for being part of the Microsoft Fabric Community.&lt;/P&gt;</description>
      <pubDate>Thu, 24 Jul 2025 17:38:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-implement-the-page-level-filter-in-a-report/m-p/4775509#M62320</guid>
      <dc:creator>v-prasare</dc:creator>
      <dc:date>2025-07-24T17:38:04Z</dc:date>
    </item>
    <item>
      <title>Re: How to implement the page level filter in a report.</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/How-to-implement-the-page-level-filter-in-a-report/m-p/4775656#M62322</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Here is how I've implemented a "page level security":&lt;/P&gt;&lt;P&gt;Requirements:&amp;nbsp;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Two groups of users: Group 1 can see all the pages + page A / Group 2 can see all the pages +page B (instead of A)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Solution:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Create a new table (in power query) "Pages" with one column "Page" and insert two rows, with the exact names of the pages ("Page A", "Page B")&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;Create 2 functions:&amp;nbsp;&lt;OL&gt;&lt;LI&gt;Page A, where&amp;nbsp;column Page = "Page A"&amp;nbsp;&lt;/LI&gt;&lt;LI&gt;Page B, where column Page = "Page B"&lt;/LI&gt;&lt;/OL&gt;&lt;/LI&gt;&lt;LI&gt;Hide the pages A and B&lt;/LI&gt;&lt;LI&gt;Insert a button to navigate to your desired page (A or B), based or the logged user, button action = page navigation, using function Field Value, "First Page", First.&lt;/LI&gt;&lt;LI&gt;After publishing you report, go to the RLS settings and set up your users according to their permissions&lt;/LI&gt;&lt;/OL&gt;</description>
      <pubDate>Thu, 24 Jul 2025 20:44:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/How-to-implement-the-page-level-filter-in-a-report/m-p/4775656#M62322</guid>
      <dc:creator>dani-k</dc:creator>
      <dc:date>2025-07-24T20:44:58Z</dc:date>
    </item>
  </channel>
</rss>

