The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredCompete to become Power BI Data Viz World Champion! First round ends August 18th. Get started.
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!