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!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hi Community!
I have a data set where I'm trying to identify the frequency an order number is repeated by the number of times it is repeated. For example in the set below I have 4 orders. Each item that is in the order has a separate record. Therefore there are 4 orders that consist of (7) different items.
| Order Number | Item |
| 123 | ABC |
| 123 | DEF |
| 456 | GHI |
| 789 | JKL |
| 789 | MNO |
| 789 | PQR |
| 101 | STU |
I am trying to visualize the number of items that are in a box by the number of items to return something like below. Where I can see that only 1 item was need for 2 orders (frequency), 2 items were needed for 1 order, and 3 items were needed for 1 order.
| Number of items | Frequency |
| 1 | 2 |
| 2 | 1 |
| 3 | 1 |
Solved! Go to Solution.
Hi @cwharris15 - create a new calculated table that counts the number of items per order as below:
Create one more table using calculated table to summarizes the number of orders by the number of items.
Hope it helps
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
Proud to be a Super User! | |
Hi @cwharris15 - create a new calculated table that counts the number of items per order as below:
Create one more table using calculated table to summarizes the number of orders by the number of items.
Hope it helps
Did I answer your question? Mark my post as a solution! This will help others on the forum!
Appreciate your Kudos!!
Proud to be a Super User! | |
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 103 | |
| 80 | |
| 62 | |
| 51 | |
| 45 |