<?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 can I disable or hide the 'Show data point as a table' option in Power BI visuals? in Custom Visuals Development Discussion</title>
    <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/How-can-I-disable-or-hide-the-Show-data-point-as-a-table-option/m-p/4739070#M12598</link>
    <description>&lt;P&gt;Thank you so much. This is really helpful.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 20 Jun 2025 18:09:20 GMT</pubDate>
    <dc:creator>mjoseph111</dc:creator>
    <dc:date>2025-06-20T18:09:20Z</dc:date>
    <item>
      <title>How can I disable or hide the 'Show data point as a table' option in Power BI visuals?</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/How-can-I-disable-or-hide-the-Show-data-point-as-a-table-option/m-p/4729146#M12581</link>
      <description>&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mjoseph111_0-1749671205631.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1275769iF15D3C2B467F6519/image-size/medium?v=v2&amp;amp;px=400" role="button" title="mjoseph111_0-1749671205631.png" alt="mjoseph111_0-1749671205631.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;How can I disable or hide the 'Show data point as a table' option in Power BI visuals?&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 11 Jun 2025 19:47:56 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/How-can-I-disable-or-hide-the-Show-data-point-as-a-table-option/m-p/4729146#M12581</guid>
      <dc:creator>mjoseph111</dc:creator>
      <dc:date>2025-06-11T19:47:56Z</dc:date>
    </item>
    <item>
      <title>Re: How can I disable or hide the 'Show data point as a table' option in Power BI visuals?</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/How-can-I-disable-or-hide-the-Show-data-point-as-a-table-option/m-p/4730394#M12582</link>
      <description>&lt;P&gt;I'll start a writeup later today but right now this might be the answer to your question:&amp;nbsp;&lt;A href="https://community.fabric.microsoft.com/t5/Desktop/Removing-the-option-to-see-quot-Data-Point-Table-quot-from/m-p/882759" target="_blank"&gt;Solved: Removing the option to see "Data Point Table" from... - Microsoft Fabric Community&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 12 Jun 2025 14:03:50 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/How-can-I-disable-or-hide-the-Show-data-point-as-a-table-option/m-p/4730394#M12582</guid>
      <dc:creator>grognard</dc:creator>
      <dc:date>2025-06-12T14:03:50Z</dc:date>
    </item>
    <item>
      <title>Re: How can I disable or hide the 'Show data point as a table' option in Power BI visuals?</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/How-can-I-disable-or-hide-the-Show-data-point-as-a-table-option/m-p/4731534#M12583</link>
      <description>&lt;H1&gt;&lt;SPAN&gt;The simplest way to hide the option&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H1&gt;&lt;P&gt;&lt;SPAN&gt;The simplest way to hide the option is to create a new measure that summarizes the value you are displaying. For example in my model where "stats" is the table I am using and [GetItNow] is the column I want to hide, I can create a measure like this:&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;GetItNow (Measure) = SUM(stats[GetItNow])&lt;/LI-CODE&gt;&lt;P&gt;&lt;SPAN&gt;and replace the data in the pie chart with that column, to have the "Show Data Point as Table" Option disappear.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="grognard_0-1749816487826.png" style="width: 400px;"&gt;&lt;img src="https://community.fabric.microsoft.com/t5/image/serverpage/image-id/1276258i69E4739ACF25FB6F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="grognard_0-1749816487826.png" alt="grognard_0-1749816487826.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Note: Make sure you select a “New Measure” instead of a “New Column”.&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;H1&gt;&lt;SPAN&gt;Taking it further&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/H1&gt;&lt;P&gt;&lt;SPAN&gt;While the option previously mentioned will prevent users from seeing ‘show data as table’ in the interface, it will not actually hide the data. To do this you will need to assign roles and enable Object Level Security using the Tabular editor tool, A good summary of how to do this can be found &lt;/SPAN&gt;&lt;A href="https://learn.microsoft.com/en-us/fabric/security/service-admin-object-level-security?tabs=table" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;here&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;External References&lt;BR /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;A href="https://blog.crossjoin.co.uk/2021/11/07/is-power-bis-show-data-point-as-a-table-feature-a-security-hole/" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;Chris Webb's BI Blog: Is Power BI’s “Show Data Point As A Table” Feature A Security Hole?&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://github.com/TabularEditor/TabularEditor/releases/tag/2.20.2" target="_blank" rel="noopener"&gt;&lt;SPAN&gt;Release Tabular Editor 2.20.2 · TabularEditor/TabularEditor · GitHub&lt;/SPAN&gt;&lt;/A&gt;&lt;SPAN&gt; (Free version)&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Jun 2025 12:12:17 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/How-can-I-disable-or-hide-the-Show-data-point-as-a-table-option/m-p/4731534#M12583</guid>
      <dc:creator>grognard</dc:creator>
      <dc:date>2025-06-13T12:12:17Z</dc:date>
    </item>
    <item>
      <title>Re: How can I disable or hide the 'Show data point as a table' option in Power BI visuals?</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/How-can-I-disable-or-hide-the-Show-data-point-as-a-table-option/m-p/4739070#M12598</link>
      <description>&lt;P&gt;Thank you so much. This is really helpful.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jun 2025 18:09:20 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/How-can-I-disable-or-hide-the-Show-data-point-as-a-table-option/m-p/4739070#M12598</guid>
      <dc:creator>mjoseph111</dc:creator>
      <dc:date>2025-06-20T18:09:20Z</dc:date>
    </item>
    <item>
      <title>Re: How can I disable or hide the 'Show data point as a table' option in Power BI visuals?</title>
      <link>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/How-can-I-disable-or-hide-the-Show-data-point-as-a-table-option/m-p/4739072#M12599</link>
      <description>&lt;P&gt;Thank you so much. This is really helpful.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Jun 2025 18:09:31 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Custom-Visuals-Development/How-can-I-disable-or-hide-the-Show-data-point-as-a-table-option/m-p/4739072#M12599</guid>
      <dc:creator>mjoseph111</dc:creator>
      <dc:date>2025-06-20T18:09:31Z</dc:date>
    </item>
  </channel>
</rss>

