Reply
Syndicate_Admin
Administrator
Administrator
Syndicated - Inbound

Calculate the number of Documents that have fewer than 12 product units in total

Source Community: Power BI Spanish | Source Author Name: BatPichon

Good morning

I ask for their help to solve my problem. I have the following table:

BatPichon_0-1734986023131.png

I want to calculate how many Documents have "Qty" less than 12 units regardless of the "products". Yes, I use

DISTINCTCOUNT result is not correct because it takes each product and not the total of the document. I thank you in advance for the help
5 REPLIES 5
Ashish_Mathur
Super User
Super User

Syndicated - Outbound

Hi,

Assuming Qty is a measure you have written, write this measure

Measure = countrows(filter(values(Data[Documents]),[Qty]>12))

Hope this helps.


Regards,
Ashish Mathur
http://www.ashishmathur.com
https://www.linkedin.com/in/excelenthusiasts/

Source Community: Power BI Spanish | Source Author Name: BatPichon
Syndicated - Inbound

Thanks but it doesn't work

The solution I found for now was to group the columan in power query, with that I have the document number, the amount and the date that serves me for the measurements I need to create

elitesmitpatel
Solution Supplier
Solution Supplier

Syndicated - Outbound

please share the dummy data pbix file for easy reference.

elitesmitpatel
Solution Supplier
Solution Supplier

Syndicated - Outbound

Try this Measure 
Documents with Qty < 12 =
CALCULATE (
DISTINCTCOUNT ( YourTable[Document_ID] ),
FILTER (
YourTable,
YourTable[Qty] < 12
)
)
If it helps Please Kudos to work and Accept it as Solution.

Source Community: Power BI Spanish | Source Author Name: BatPichon
Syndicated - Inbound

Thanks but it doesn't work because for the filter it takes the amount related to the product, I must first have a measure that gives me the total per document and then filter that measure

avatar user

Helpful resources

Announcements
March PBI video - carousel

Power BI Monthly Update - March 2025

Check out the March 2025 Power BI update to learn about new features.

March2025 Carousel

Fabric Community Update - March 2025

Find out what's new and trending in the Fabric community.

Top Solution Authors (Last Month)
Top Kudoed Authors (Last Month)