March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
Good morning
I ask for their help to solve my problem. I have the following table:
I want to calculate how many Documents have "Qty" less than 12 units regardless of the "products". Yes, I use
Hi,
Assuming Qty is a measure you have written, write this measure
Measure = countrows(filter(values(Data[Documents]),[Qty]>12))
Hope this helps.
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
please share the dummy data pbix file for easy reference.
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.
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
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
123 | |
82 | |
69 | |
53 | |
44 |
User | Count |
---|---|
202 | |
106 | |
100 | |
64 | |
56 |