Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Anonymous
Not applicable

Filter based on count of legendsbhaving values

if there there are 2 legends and for one value only one legent have value then i dont want to show that legend. means if both legends have value then only bar should be shown (Source is SSAS)

 

 
 
 
 
1 ACCEPTED SOLUTION
technolog
Super User
Super User

Create these measures in your SSAS model and use the third one in the visual.

Legends with data count

COUNTROWS(
FILTER(
ALLSELECTED( 'Legend'[Legend] ),
NOT ISBLANK( CALCULATE( [Amount] ) )
)
)

Legends required count

COUNTROWS( ALLSELECTED( 'Legend'[Legend] ) )

Amount only when all legends present

IF(
[Legends with data count] = [Legends required count],
[Amount],
BLANK()
)

View solution in original post

2 REPLIES 2
technolog
Super User
Super User

Create these measures in your SSAS model and use the third one in the visual.

Legends with data count

COUNTROWS(
FILTER(
ALLSELECTED( 'Legend'[Legend] ),
NOT ISBLANK( CALCULATE( [Amount] ) )
)
)

Legends required count

COUNTROWS( ALLSELECTED( 'Legend'[Legend] ) )

Amount only when all legends present

IF(
[Legends with data count] = [Legends required count],
[Amount],
BLANK()
)

Anonymous
Not applicable

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.