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.
Hi friends,
I'm creating a report that distributes costs based on production levels but the account the cost is assigned to does not need to have the percentage showing since it does not go down to the granularity. Is there any way that you know of to "turn off" the measure when it reaches a certain part of the Hierarchy? I don't want/need the highlighted values to be shown.
Solved! Go to Solution.
Hi @Kurtle ,
We can use the is ISINSCOPE function to meet you requirement:
Measure = IF(ISINSCOPE('Table'[ColumnYouWant]),BLANK(),[OriginMeasureCalculate])
BTW, pbix as attached.
Best regards,
Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Kurtle ,
We can use the is ISINSCOPE function to meet you requirement:
Measure = IF(ISINSCOPE('Table'[ColumnYouWant]),BLANK(),[OriginMeasureCalculate])
BTW, pbix as attached.
Best regards,
Community Support Team _ Dong Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.