Forum Discussion
Anonymous
4 years agoNot applicable
DAX measure for Excluding/Filtering Out Some Column String Values
Hi all, I have this bar chart, but I want to be able to filter out some bar because I dont need those information to show, example showing the recently completed project. How do I write a DAX mea...
Kriekis
4 years agoFrequent Visitor
Then Your measure looks like this:
calculate (
<your calculation>,
Status <> "03 - Recently Complete"
)
or alternatively You can filter out those rows in Power Query.