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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hello,
I have a visual that i have drilling down by client and product type. I want the top level client visual to show only a certain threshold (i.e. >400 and <0 for big positiives and negatives), but when i drill down i want to show all values.
I've tried creating a filter measure to exclude the 2nd level of the hierarchy (product type), but it isnt doing the trick. Heres the calc im using for that:
CALCULATE( [Var to plan], ALLEXCEPT('Communications Revenue','Communications Revenue'[Product type]))
Anyone have any ideas? Greatly appreciated. Thanks!
Solved! Go to Solution.
Hi @Anonymous ,
Based on your descrition, you can try to create a measure like this:
Measure =
IF (
ISINSCOPE ( 'Table'[Product type] ),
SUM ( 'Table'[Value] ),
CALCULATE (
SUM ( 'Table'[Value] ),
FILTER (
ALL ( 'Table' ),
( 'Table'[Value] < 0
|| 'Table'[Value] > 400 )
&& 'Table'[Client] IN DISTINCT ( 'Table'[Client] )
)
)
)
Attached a sample file in the below, hopes to help you.
Best Regards,
Yingjie Li
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Anonymous ,
Based on your descrition, you can try to create a measure like this:
Measure =
IF (
ISINSCOPE ( 'Table'[Product type] ),
SUM ( 'Table'[Value] ),
CALCULATE (
SUM ( 'Table'[Value] ),
FILTER (
ALL ( 'Table' ),
( 'Table'[Value] < 0
|| 'Table'[Value] > 400 )
&& 'Table'[Client] IN DISTINCT ( 'Table'[Client] )
)
)
)
Attached a sample file in the below, hopes to help you.
Best Regards,
Yingjie Li
If this post helps then please consider Accept it as the solution to help the other members find it more quickly.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the September 2025 Power BI update to learn about new features.