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
Honored Contributor

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
Anonymous
Not applicable
technolog
Honored Contributor

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()
)

Helpful resources

Announcements
Users online (9,586)