<?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: Custom tooltip measure that filters in DAX Commands and Tips</title>
    <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Custom-tooltip-measure-that-filters/m-p/4151220#M164956</link>
    <description>&lt;P&gt;Thank you i am going to try this, should this show all the periods seperate&amp;nbsp; so like a bar chart for p1, p2, p3 etc when i hover over the doughnut chart, thank you&lt;/P&gt;</description>
    <pubDate>Sun, 15 Sep 2024 11:21:35 GMT</pubDate>
    <dc:creator>Dave1234</dc:creator>
    <dc:date>2024-09-15T11:21:35Z</dc:date>
    <item>
      <title>Custom tooltip measure that filters</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Custom-tooltip-measure-that-filters/m-p/4150604#M164907</link>
      <description>&lt;P&gt;I have a doughnut chart that is filtered for one catergory which is heating and the lage filter is set to just a single period p5&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I want to create a measure that i can use as a tooltip that will still filter the catergory so it only shows the one im hovering over but will show all periods for that catergory&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can anyone help please&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 14 Sep 2024 08:26:23 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Custom-tooltip-measure-that-filters/m-p/4150604#M164907</guid>
      <dc:creator>Dave1234</dc:creator>
      <dc:date>2024-09-14T08:26:23Z</dc:date>
    </item>
    <item>
      <title>Re: Custom tooltip measure that filters</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Custom-tooltip-measure-that-filters/m-p/4150943#M164942</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="688782" data-lia-user-login="Dave1234" class="lia-mention lia-mention-user"&gt;Dave1234&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can you please try this approach:&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Tooltip Measure = 
VAR SelectedCategory = SELECTEDVALUE('YourTable'[Category])
RETURN
CALCULATE(
    SUM('YourTable'[Value]),  -- Or whatever measure you're summing up
    'YourTable'[Category] = SelectedCategory,
    ALL('YourTable'[Period])  -- This removes the filter on the Period
)
&lt;/LI-CODE&gt;</description>
      <pubDate>Sat, 14 Sep 2024 21:05:36 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Custom-tooltip-measure-that-filters/m-p/4150943#M164942</guid>
      <dc:creator>Sahir_Maharaj</dc:creator>
      <dc:date>2024-09-14T21:05:36Z</dc:date>
    </item>
    <item>
      <title>Re: Custom tooltip measure that filters</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Custom-tooltip-measure-that-filters/m-p/4151220#M164956</link>
      <description>&lt;P&gt;Thank you i am going to try this, should this show all the periods seperate&amp;nbsp; so like a bar chart for p1, p2, p3 etc when i hover over the doughnut chart, thank you&lt;/P&gt;</description>
      <pubDate>Sun, 15 Sep 2024 11:21:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Custom-tooltip-measure-that-filters/m-p/4151220#M164956</guid>
      <dc:creator>Dave1234</dc:creator>
      <dc:date>2024-09-15T11:21:35Z</dc:date>
    </item>
    <item>
      <title>Re: Custom tooltip measure that filters</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Custom-tooltip-measure-that-filters/m-p/4151282#M164961</link>
      <description>&lt;P&gt;Its only showing P5 for that catergory ic want it to show all the periods in the bar chart for that catergory, thank you&lt;/P&gt;</description>
      <pubDate>Sun, 15 Sep 2024 13:26:08 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Custom-tooltip-measure-that-filters/m-p/4151282#M164961</guid>
      <dc:creator>Dave1234</dc:creator>
      <dc:date>2024-09-15T13:26:08Z</dc:date>
    </item>
    <item>
      <title>Re: Custom tooltip measure that filters</title>
      <link>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Custom-tooltip-measure-that-filters/m-p/4161411#M165332</link>
      <description>&lt;P&gt;Hi All,&lt;BR /&gt;Firstly Sahir_Maharaj thank you for your solution!&lt;BR /&gt;And&amp;nbsp;&lt;a href="javascript:void(0)" data-lia-user-mentions="" data-lia-user-uid="688782" data-lia-user-login="Dave1234" class="lia-mention lia-mention-user"&gt;Dave1234&lt;/a&gt;&amp;nbsp;,you want to click on P5 to display the entire bar chart, unfortunately due to the limitations of the Power BI environment this is not easy to do, after we select P5, the entire pie chart will also be changed, the pie chart will only select the value of P5, so in this case, the filtering is mandatory, we can not ignore it.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Measure = CALCULATE(SUM('heating_cooling_sales'[Sales]),ALLSELECTED('heating_cooling_sales'[Category]))&lt;/LI-CODE&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;We also tried the following, which is to not keep all the filters, this seems to allow you to show all the values when selecting P5, but there is still a problem, which means that he can't separate the different sales by category, it will only be one type of sales.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;Again, I apologize that the limitations of the pie chart may not be perfect for your needs, if you have further thoughts or ideas, feel free to contact me and I will get back to you as soon as I receive the message!&lt;/P&gt;
&lt;P&gt;Hope it helps!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best regards,&lt;BR /&gt;Community Support Team_ Tom Shen&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If this post helps then please consider&amp;nbsp;&lt;STRONG&gt;Accept it as the solution&lt;/STRONG&gt;&amp;nbsp;to help the other members find it more quickly.&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;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 20 Sep 2024 05:33:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/DAX-Commands-and-Tips/Custom-tooltip-measure-that-filters/m-p/4161411#M165332</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-09-20T05:33:35Z</dc:date>
    </item>
  </channel>
</rss>

