Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I need a new measure formula for getting a distinct count of "IDs" while filtering for values on "Profit" that are less than 0 and adding a filter for "New" in the Used/New field so it only pulls those values. For some reason I'm getting errors with the > when I use the calculate function.
Thanks for any help you can provide!
Hello @NCPowerBI.,
Here's a measure formula that should give you the distinct count of IDs:
DistinctCountIDs =
CALCULATE(
DISTINCTCOUNT(Table[ID]),
FILTER(
Table,
Table[Profit] < 0 && Table[Used/New] = "New"
)
)
Let me know if you have any further questions.
Hi Sahir, for whatever reason it's still giving me an issue. It's not giving me any values when I put it on the view. I neglected to mention above, there are two different fields I am filtering for at the end - "New" and "Non". Let me know your thoughts!
User | Count |
---|---|
59 | |
59 | |
56 | |
38 | |
29 |
User | Count |
---|---|
80 | |
62 | |
45 | |
40 | |
39 |