<?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 - RLS in Developer</title>
    <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-RLS/m-p/4295719#M58377</link>
    <description>&lt;P&gt;&amp;nbsp;I followed your steps and tried but still not working. It is showing blank report for non POC users.&lt;/P&gt;&lt;P&gt;Thank you.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 21 Nov 2024 17:13:35 GMT</pubDate>
    <dc:creator>Prarav</dc:creator>
    <dc:date>2024-11-21T17:13:35Z</dc:date>
    <item>
      <title>Power BI - RLS</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-RLS/m-p/4291922#M58348</link>
      <description>&lt;DIV class=""&gt;&lt;DIV&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;SPAN&gt;I need assistance with the following scenario:&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&amp;nbsp;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;P&gt;I have a Power BI report. In my dataset I have two tables.&lt;/P&gt;&lt;P&gt;Table -1: &lt;STRONG&gt;REQ&lt;/STRONG&gt; table&lt;/P&gt;&lt;P&gt;Columns: REQ No, URL(Web-url), PrimaryID(GUID), SecondaryID(GUID)&lt;/P&gt;&lt;P&gt;Table-2: &lt;STRONG&gt;USER&lt;/STRONG&gt; table&lt;/P&gt;&lt;P&gt;Columns: userid(GUID), domainname(user’s email) email&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;REQ table doesn’t have POCemail.&lt;/LI&gt;&lt;LI&gt;The REQ table and USER table are linked through the UserID in the REQ table and the PrimaryID in the USER table.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;I have a requirement where both Primary and Secondary users should be able to see all Request Numbers (REQ No). Additionally:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;For Primary and Secondary users, the Request Numbers assigned to them should appear as hyperlinks.&lt;/LI&gt;&lt;LI&gt;For other users, all Request Numbers should be displayed as plain text (non-clickable).&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Tue, 19 Nov 2024 21:54:34 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-RLS/m-p/4291922#M58348</guid>
      <dc:creator>Prarav</dc:creator>
      <dc:date>2024-11-19T21:54:34Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI - RLS</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-RLS/m-p/4292534#M58354</link>
      <description>&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;Hi,&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/694933"&gt;@Prarav&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;Firstly, I created the following sample data:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vlinyulumsft_0-1732083925398.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1202768i2C3AB6B4A1C6D0C8/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vlinyulumsft_0-1732083925398.png" alt="vlinyulumsft_0-1732083925398.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vlinyulumsft_1-1732083925399.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1202769iB39F71CDF3A30DA9/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vlinyulumsft_1-1732083925399.png" alt="vlinyulumsft_1-1732083925399.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;Secondly, assuming that the other users you mentioned refer to the USER[userid (GUID)] and REQ[PrimaryID (GUID)] not matching one-to-one, you should create the following measure:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = 
VAR ww1=SELECTEDVALUE (USER[userid (GUID)])
VAR ID1 =
    CALCULATETABLE (
        VALUES ( 'REQ'[REQ No]),
        FILTER ( ALLSELECTED ( 'REQ' ), 'REQ'[PrimaryID (GUID)]= ww1 )
    )
RETURN
   IF(MAX('REQ'[REQ No]) IN ID1,MAX('REQ'[URL]),BLANK())
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;Then, apply this measure to the 'REQ'[REQ No] column:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vlinyulumsft_2-1732083970885.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1202771iED8B3F8BA017336C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vlinyulumsft_2-1732083970885.png" alt="vlinyulumsft_2-1732083970885.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vlinyulumsft_3-1732083970886.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1202772iFBDDEE2614AC951A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vlinyulumsft_3-1732083970886.png" alt="vlinyulumsft_3-1732083970886.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;Finally, make the modifications in the location indicated in the diagram below:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vlinyulumsft_4-1732083990851.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1202774i7338E63D943CE482/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vlinyulumsft_4-1732083990851.png" alt="vlinyulumsft_4-1732083990851.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;Here are the final results:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vlinyulumsft_5-1732083990853.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1202775iA275C3C64E63571C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vlinyulumsft_5-1732083990853.png" alt="vlinyulumsft_5-1732083990853.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;Due to privacy agreements, we are unable to provide a test email directly; I recommend using your own Power BI user email for testing purposes.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;" lang="zh-CN"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;For further details, please refer to:&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;" lang="zh-CN"&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/security/service-admin-row-level-security#using-the-username-or-userprincipalname-dax-function" target="_blank" rel="noopener"&gt;https://learn.microsoft.com/en-us/fabric/security/service-admin-row-level-security#using-the-username-or-userprincipalname-dax-function&lt;/A&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;" lang="zh-CN"&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;When uploading a file, please be careful to delete sensitive information.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;&lt;SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN&gt;Can you share sample data and sample output in tabular format if I am misunderstanding? Or a sample pbix after removing sensitive data. We can better understand the problem and help you.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;For questions about uploading data, you can try the following links:&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 6pt;"&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;How to provide sample data in the Power BI Forum - Microsoft Fabric Community&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 6pt;"&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Desktop/How-to-upload-PBI-in-Community/m-p/1672886" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;Solved: How to upload PBI in Community - Microsoft Fabric Community&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 6pt; font-family: Calibri; font-size: 11.0pt;" lang="zh-CN"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;Best Regards,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;Leroy Lu&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;If this post &lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider Accept it &lt;EM&gt;&lt;STRONG&gt;as the solution &lt;/STRONG&gt;&lt;/EM&gt;to help the other members find it more quickly.&lt;/P&gt;</description>
      <pubDate>Wed, 20 Nov 2024 06:28:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-RLS/m-p/4292534#M58354</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-20T06:28:01Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI - RLS</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-RLS/m-p/4295719#M58377</link>
      <description>&lt;P&gt;&amp;nbsp;I followed your steps and tried but still not working. It is showing blank report for non POC users.&lt;/P&gt;&lt;P&gt;Thank you.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Nov 2024 17:13:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-RLS/m-p/4295719#M58377</guid>
      <dc:creator>Prarav</dc:creator>
      <dc:date>2024-11-21T17:13:35Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI - RLS</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-RLS/m-p/4296539#M58393</link>
      <description>&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;HI,&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/694933"&gt;@Prarav&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Thank you for your prompt response.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;" lang="zh-CN"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;Could you please provide details on what your expected output should look like? I suspect there may be a misunderstanding on my part regarding your question, and I would appreciate it if you could clarify the following:&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;" lang="zh-CN"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial;"&gt;&lt;SPAN&gt;1.&lt;/SPAN&gt;&lt;SPAN&gt;What are the results from the perspectives of Primary and Secondary users compared to those of other users?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial;"&gt;&lt;SPAN&gt;2.&lt;/SPAN&gt;&lt;SPAN&gt;How do we determine which users fall under the category of 'other users'? Am I correct in understanding that this refers to users who have a UserID but do not have a PrimaryID?&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;I hope you can answer my questions, as this will help me better understand your issue and propose a more suitable solution for you.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;For questions about uploading data, you can try the following links:&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 6pt;"&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-Forum/ba-p/963216" target="_blank"&gt;&lt;SPAN&gt;How to provide sample data in the Power BI Forum - Microsoft Fabric Community&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 6pt;"&gt;&lt;A href="https://community.fabric.microsoft.com/t5/Desktop/How-to-upload-PBI-in-Community/m-p/1672886" target="_blank"&gt;&lt;SPAN&gt;Solved: How to upload PBI in Community - Microsoft Fabric Community&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 6pt;"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 6pt; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;When uploading a file, please be careful to delete sensitive information.&lt;/P&gt;
&lt;P style="margin-top: 0pt; margin-bottom: 6pt; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;Best Regards,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;Leroy Lu&lt;/P&gt;</description>
      <pubDate>Fri, 22 Nov 2024 06:39:55 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-RLS/m-p/4296539#M58393</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-22T06:39:55Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI - RLS</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-RLS/m-p/4297806#M58404</link>
      <description>&lt;P&gt;Hi Lu,&lt;/P&gt;&lt;P&gt;I appreaciate your help. Please see my answers below in blue text&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;1.&lt;/SPAN&gt;&lt;SPAN&gt;What are the results from the perspectives of Primary and Secondary users compared to those of other users?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366FF"&gt;&lt;SPAN&gt;Primary and Secondary users should be able to see all Request Numbers as plain text. However, the Request Numbers that belong to them should appear as hyperlinks. &lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366FF"&gt;&lt;SPAN&gt;Something like:&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;1. Scenario&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Prarav_0-1732305150527.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1204415iDC516DC1F0AECF4D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Prarav_0-1732305150527.png" alt="Prarav_0-1732305150527.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#800000"&gt;OR&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#800000"&gt;2. Scenario. I would like to display something like following screenshot.&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Prarav_1-1732305562430.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1204417i52E5F52C971CC866/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Prarav_1-1732305562430.png" alt="Prarav_1-1732305562430.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;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;2.&lt;/SPAN&gt;&lt;SPAN&gt;How do we determine which users fall under the category of 'other users'? Am I correct in understanding that this refers to users who have a UserID but do not have a PrimaryID?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT color="#3366FF"&gt;Users who are not assigned as Primary POCs or Secondary POCs should see the Request Numbers as plain text when they open the report.&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 22 Nov 2024 19:57:04 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-RLS/m-p/4297806#M58404</guid>
      <dc:creator>Prarav</dc:creator>
      <dc:date>2024-11-22T19:57:04Z</dc:date>
    </item>
    <item>
      <title>Re: Power BI - RLS</title>
      <link>https://community.fabric.microsoft.com/t5/Developer/Power-BI-RLS/m-p/4299689#M58425</link>
      <description>&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;Hi,&amp;nbsp;&lt;a href="https://community.fabric.microsoft.com/t5/user/viewprofilepage/user-id/694933"&gt;@Prarav&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;Thank you for your prompt response.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;Based on your latest reply, I have updated my solution as follows:&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;" lang="zh-CN"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial;"&gt;&lt;SPAN&gt;1.&lt;/SPAN&gt;&lt;SPAN&gt;Firstly, I have created the following measures:&lt;/SPAN&gt;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = 
VAR ccc1=CALCULATETABLE (
        VALUES ( 'USER'[domainname (email)]),
        FILTER ( ALLSELECTED ( 'USER' ), 'USER'[userid (GUID)] IN VALUES('REQ'[PrimaryID (GUID)]) )
    )
VAR No1 =
    CALCULATETABLE (
        VALUES ( 'REQ'[REQ No]),
        FILTER ( ALLSELECTED ( 'REQ' ), 'REQ'[PrimaryID (GUID)] IN VALUES(USER[userid (GUID)]) )
    )
RETURN
   IF(USERPRINCIPALNAME() IN ccc1,IF(MAX('REQ'[REQ No]) IN No1,MAX('REQ'[URL]),BLANK()),BLANK())&lt;/LI-CODE&gt;
&lt;P style="margin: 0in; font-family: Arial;"&gt;&lt;SPAN&gt;2.&lt;/SPAN&gt;&lt;SPAN&gt;Secondly, I have modified the settings in the visualization:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vlinyulumsft_0-1732528128397.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1205161i2415BAA90DA5A3B6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vlinyulumsft_0-1732528128397.png" alt="vlinyulumsft_0-1732528128397.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vlinyulumsft_1-1732528128398.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1205160iC76CA9D9D68E5EEA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vlinyulumsft_1-1732528128398.png" alt="vlinyulumsft_1-1732528128398.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial;"&gt;&lt;SPAN&gt;3.&lt;/SPAN&gt;&lt;SPAN&gt;Here are the final results:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Calibri; font-size: 11.0pt;" lang="zh-CN"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;When the user is a Primary and Secondary user:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vlinyulumsft_2-1732528142097.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1205163i066343F68208F645/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vlinyulumsft_2-1732528142097.png" alt="vlinyulumsft_2-1732528142097.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;When the user is another type of user:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="vlinyulumsft_3-1732528142098.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1205162i25B71204B630993A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="vlinyulumsft_3-1732528142098.png" alt="vlinyulumsft_3-1732528142098.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;" lang="zh-CN"&gt;Please note that the USERPRINCIPALNAME() function returns the email address you are currently using.&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;Please find the attached pbix relevant to the case.&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;Best Regards,&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;Leroy Lu&lt;/P&gt;
&lt;P style="margin: 0in; font-family: Arial; font-size: 12.0pt; color: black;"&gt;If this post &lt;EM&gt;&lt;STRONG&gt;helps&lt;/STRONG&gt;&lt;/EM&gt;, then please consider Accept it &lt;EM&gt;&lt;STRONG&gt;as the solution &lt;/STRONG&gt;&lt;/EM&gt;to help the other members find it more quickly.&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 25 Nov 2024 09:50:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Developer/Power-BI-RLS/m-p/4299689#M58425</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-25T09:50:08Z</dc:date>
    </item>
  </channel>
</rss>

