Don't miss your chance to take the Fabric Data Engineer (DP-700) exam on us!
Learn moreWe've captured the moments from FabCon & SQLCon that everyone is talking about, and we are bringing them to the community, live and on-demand. Starts on April 14th. Register now
Heya Experts!
I create the following graph:
As you can see there is alot of 0 0 values.
The orange bar is calculated using
Started = IF(ISBLANK(count('WorkItems In Progress WIP'[InProgressDateSK])),0,(count('WorkItems In Progress WIP'[InProgressDateSK])))and the blue ones using
Completed = IF(ISBLANK(count('WorkItems Completed'[CompletedDateSK])),0,(count('WorkItems Completed'[CompletedDateSK])) )What i want now is a filter to only hide the values if both Completed AND Started is 0. if one of them is higher then 0 i'd like to show both.
To be honest i have no idea how to do this.
Thankyou.
Solved! Go to Solution.
Hi,
i would try to create a new measure:
Sum=started+completed
and put this messure into the filter area and set the filter for "SUM" is greater than 0 ....
but maybe there is a better solution..
Hi,
i would try to create a new measure:
Sum=started+completed
and put this messure into the filter area and set the filter for "SUM" is greater than 0 ....
but maybe there is a better solution..
@Sonne wrote:Hi,
i would try to create a new measure:
Sum=started+completed
and put this messure into the filter area and set the filter for "SUM" is greater than 0 ....
but maybe there is a better solution..
Sometimes i wonder how i cant come up with this kind of stuff..
Thanks alot! 🙂
Hi,
quick idea:
shown = IF ( AND ( Started = 0, Completed = 0 ), 0, 1 )
and than on page/visual level filter filter only rows with value 1.
@lubosst wrote:Hi,
quick idea:
shown = IF ( AND ( Started = 0, Completed = 0 ), 0, 1 )and than on page/visual level filter filter only rows with value 1.
Nope, doesnt work.
Maybe i have to add that started and completed are measures.
Do you have activated "Show with no data"?
Best Regards,
Miguel
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
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.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
| User | Count |
|---|---|
| 52 | |
| 37 | |
| 35 | |
| 19 | |
| 17 |
| User | Count |
|---|---|
| 72 | |
| 70 | |
| 39 | |
| 34 | |
| 23 |