Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
I want to force a zero to display instead of blank when a specific condition occurs.
I have a measure that calculates points Done, which works fine:
However, if the Sprint is less than the Current Sprint (is in the past) and it shows blank, I want it to return 0 instead. This is my attempt but it is showing zero for all Sprints and not just those in the past.
Solved! Go to Solution.
You can try
Effort done 2 =
var workDone = [Effort-Done]
return IF( SELECTEDVALUE( 'PI_Work'[Sprint#]) < [Current Sprint#], COALESCE(workDone, 0), workDone)
You can try
Effort done 2 =
var workDone = [Effort-Done]
return IF( SELECTEDVALUE( 'PI_Work'[Sprint#]) < [Current Sprint#], COALESCE(workDone, 0), workDone)
I get an error with that: “Too many arguments were passed to the SELECTEDVALUE function. The maximum argument count for the function is 2.”
Typo, I was missing a ). I've edited the original post.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
Check out the November 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 59 | |
| 43 | |
| 42 | |
| 23 | |
| 17 |
| User | Count |
|---|---|
| 190 | |
| 122 | |
| 96 | |
| 66 | |
| 47 |