Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
I am having an issue with creating a measure that shows up accurately in the tooltip.
My measure "# of Scrapes Total" is showing 14 instead of 13. It should only show 13 because I have a slicer to only show records for competitor with at least 3 competitor entries or more.
Could you please tell me what I'm doing wrong? Thanks.
I included the PBIX file for your reference. https://www.dropbox.com/s/tv8dvjjle37afor/Competitor%20Ex.pbix?dl=0
Solved! Go to Solution.
Hi Rob,
The reason the total is showing up as 14 is because you're removing all the filter contexts except category, but including Competitor, in your measure. Result is the slicer selection won't have any effect
You could try something like this:
Hi @rob2 ,
For your measure ‘# of Scrapes Total’, ‘ALLEXCEPT(CompData,CompData[Category])’ removes all context filters in the table except the filter that has been applied to column ‘Category....
So, the value of ‘# of Scrapes Total’ won’t change except filtering category.
Best Regards,
Icey
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Rob,
The reason the total is showing up as 14 is because you're removing all the filter contexts except category, but including Competitor, in your measure. Result is the slicer selection won't have any effect
You could try something like this: