Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hello Folks.
I'm trying to filter a chart by two values.
Rules: If actual velocity projection is greater than total stories then i won't show others sprints
Can anyone help me? Is that possible?
TY guys
Solved! Go to Solution.
I think you will have to do this by creating 2 new measures for your chart. For the Total Stories measure the "trick" is to return the value of the base [Total Stories] measure if we are looking at only one sprint and the value of Total Stories is greater than the actual velocity projection
Total Stories for Chart = IF( HASONEVALUE( 'Sprint Table'[Sprint Name] ) , IF( [Total Stories] > [Actual Velocity Projection], [Total Stories] , BLANK() ) , [Total Stories])
For the velocity you'd follow a similar pattern, just check if the velocity is less than the total stories, otherwise return blank.
Actual Velocity Projection for Chart = IF( HASONEVALUE( 'Sprint Table'[Sprint Name] ) , IF( [Actual Velocity Projection] < [Total Stories], [Actual Velocity Projection] , BLANK() ) , [Actual Velocity Projection])
I think you will have to do this by creating 2 new measures for your chart. For the Total Stories measure the "trick" is to return the value of the base [Total Stories] measure if we are looking at only one sprint and the value of Total Stories is greater than the actual velocity projection
Total Stories for Chart = IF( HASONEVALUE( 'Sprint Table'[Sprint Name] ) , IF( [Total Stories] > [Actual Velocity Projection], [Total Stories] , BLANK() ) , [Total Stories])
For the velocity you'd follow a similar pattern, just check if the velocity is less than the total stories, otherwise return blank.
Actual Velocity Projection for Chart = IF( HASONEVALUE( 'Sprint Table'[Sprint Name] ) , IF( [Actual Velocity Projection] < [Total Stories], [Actual Velocity Projection] , BLANK() ) , [Actual Velocity Projection])
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 41 | |
| 37 | |
| 34 | |
| 21 | |
| 16 |
| User | Count |
|---|---|
| 65 | |
| 62 | |
| 31 | |
| 26 | |
| 25 |