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

Enhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.

Reply
Alicia_Anderson
Resolver I
Resolver I

How to add additional filter condition to a measure

Someone helped me with this measure which will force a value of 0 for a Sprint.   However, I need to include an additional filter condition that ignores this logic if the Team is "No Team".  How would I do that?  Team is in the Teams table:  'Teams'[Team]

 

Effort-Done_0 = VAR DoneZero = [Effort-Done]
return IF( SELECTEDVALUE( 'PI_Work'[Sprint#]) < [Current_Sprint#], COALESCE(DoneZero, 0), DoneZero
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@Alicia_Anderson , Try like

 


Effort-Done_0 = VAR DoneZero = [Effort-Done]
return
if( max('PI_Work'[Team]) = "No Team", blank(), IF( SELECTEDVALUE( 'PI_Work'[Sprint#]) < [Current_Sprint#], COALESCE(DoneZero, 0), DoneZero) )

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

View solution in original post

1 REPLY 1
amitchandak
Super User
Super User

@Alicia_Anderson , Try like

 


Effort-Done_0 = VAR DoneZero = [Effort-Done]
return
if( max('PI_Work'[Team]) = "No Team", blank(), IF( SELECTEDVALUE( 'PI_Work'[Sprint#]) < [Current_Sprint#], COALESCE(DoneZero, 0), DoneZero) )

Share with Power BI Enthusiasts: Full Power BI Video (20 Hours) YouTube
Microsoft Fabric Series 60+ Videos YouTube
Microsoft Fabric Hindi End to End YouTube

Helpful resources

Announcements
July 2025 community update carousel

Fabric Community Update - July 2025

Find out what's new and trending in the Fabric community.

July PBI25 Carousel

Power BI Monthly Update - July 2025

Check out the July 2025 Power BI update to learn about new features.