Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
I am using a clustered bar chart to display the Sick Days taken by different teams.
Here is a sample of my table:
Sales Team | Development Team | Operations Team | Product Dev Team | |
Sick days taken | 0 | 3 | 2 | 0 |
My chart is currently showing all 4 teams, even those with the value of 0. How do I get it to only showing teams with more than 1, and not show the Sales & Product Dev Team on the chart?
I've tried look through a few forums and can't find a solution, I also can't do an advanced filter for some reason on e.g. "Sales Team" to only show values more than 0.
Thanks for your help.
@Caiz , If they column the only thing you can do is
Sales Team leaves = var _1 = calculate(sum(Table[Sales Team]))
if(_1 =0 , blank(),0) //You need to create for other three
If the team is column value then
Team leaves = var _1 = calculate(sum(Table[Team]))
if(_1 =0 , blank(),0)
Hi @amitchandak , I am getting an error for the following query:
@amitchandak Unfortunately it's still showing this new measure in the chart even though the value is 0
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
25 | |
12 | |
9 | |
9 | |
9 |
User | Count |
---|---|
21 | |
14 | |
14 | |
13 | |
13 |