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!Vote for your favorite vizzies from the Power BI Dataviz World Championship submissions. Vote 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.
Vote for your favorite vizzies from the Power BI World Championship submissions!
If you love stickers, then you will definitely want to check out our Community Sticker Challenge!
Check out the January 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 57 | |
| 55 | |
| 42 | |
| 16 | |
| 16 |
| User | Count |
|---|---|
| 113 | |
| 105 | |
| 39 | |
| 35 | |
| 26 |