Forum Discussion
Power Bi Filters
- Anonymous7 years ago
You're welcome. Thinking a bit more about this. The solution will work, but I don't think it's the most elegant way.
You're talking about expected statuses that don't actually exist. But actually, you know what the statuses will be, right?
You can add another table, with the list of expected statuses.
Then create a Relationship between this table and your current table. That relationship will cause the existing table to be filtered by the new.
Create the following visual to show all statuses:
1. Table visual with the Status from the new table, and the Count of Status measure.
2. Right-click the Status field, and click "Show items with no data".
Each row in the table is a status - since the new table filters the existing, the existing table is limited to only the rows with that status.
shere100 -
You could create a measure like this:
My Measure =
var a = SUM('Test'[Test Result])
return IF(ISBLANK(a), 0, a)
What is does: loads the value into variable a.
Returns 0 if a is blank, otherwise, a.
This measure should work everywhere - No need to create more than 1! :smileyhappy: The SUM function adds up all of the values in your column AFTER the column is filtered based on your selections. So, in a table, every cell that includes this value is filtered by whatever attributes are on the rows, etc. and also any slicers applied in other slicer visuals.
Hi, thanks for the response.
I have created the visual as well as the measure using the query supplied.
How do I now apply this to the donut chart visual? once I select the measure how to I enforce?
With this measure to the donut visual, where the filter does not exist a 0 will be displayed as per query in the measure. How do I apply please?