Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowData Days is here! Join us now for 60+ days of learning, challenges, and connection. Learn more
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.
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 23 | |
| 23 | |
| 21 | |
| 17 | |
| 13 |
| User | Count |
|---|---|
| 58 | |
| 51 | |
| 39 | |
| 29 | |
| 24 |