Explore and share Fabric Notebooks to boost Power BI insights in the new community notebooks gallery.
Check it out now!Microsoft is giving away 50,000 FREE Microsoft Certification exam vouchers. Get Fabric certified for FREE! Learn more
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!