This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
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.
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 35 | |
| 32 | |
| 26 | |
| 21 | |
| 18 |
| User | Count |
|---|---|
| 68 | |
| 39 | |
| 33 | |
| 24 | |
| 23 |