Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Learn from the best! Meet the four finalists headed to the FINALS of the Power BI Dataviz World Championships! Register now
Hi People,
Most of my data is detailed item line level and is not summarized data.
An example, multiple orders and each item of an order stored on a separate line:
| Order | Item | Price |
| 1000 | Laptop | €850 |
1000 | Keyboard | €150 |
1001 | Laptop | €650 |
| 1001 | Keyboard | €100 |
| 1002 | Laptop | €1.250 |
I want to know how many orders are smaller than €1.000.
Can somebody tell me how I can calculate this without creating a new table?
Thank you in advance.
Solved! Go to Solution.
@jhaastBI , Try measure like
count order = countx(filter(summarize(Table, Table[Order],"_1" ,sum(Table[Price])), [_1]<1000), [Order])
Sum Price = countx(filter(summarize(Table, Table[Order],"_1" ,sum(Table[Price])), [_1]<1000), [_1])
@jhaastBI , Try measure like
count order = countx(filter(summarize(Table, Table[Order],"_1" ,sum(Table[Price])), [_1]<1000), [Order])
Sum Price = countx(filter(summarize(Table, Table[Order],"_1" ,sum(Table[Price])), [_1]<1000), [_1])
Thank you a lot! That is the solution.
Share feedback directly with Fabric product managers, participate in targeted research studies and influence the Fabric roadmap.
Check out the February 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 53 | |
| 48 | |
| 31 | |
| 16 | |
| 14 |
| User | Count |
|---|---|
| 86 | |
| 72 | |
| 38 | |
| 28 | |
| 24 |