The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
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]
Solved! Go to Solution.
@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) )
@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) )
User | Count |
---|---|
79 | |
73 | |
39 | |
30 | |
28 |
User | Count |
---|---|
108 | |
99 | |
55 | |
49 | |
45 |