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
Need to be a able to count the number of customer orders and be able to filter by order date wich updates the count of customer orders.
| Customer ID | Order ID | Order Date | No Customer Orders |
| 1 | 1 | 1/01/2017 | 2 |
| 1 | 2 | 3/01/2017 | 2 |
| 2 | 3 | 2/01/2017 | 1 |
| 3 | 4 | 5/01/2017 | 4 |
| 3 | 5 | 8/01/2017 | 4 |
| 3 | 6 | 9/01/2017 | 4 |
| 3 | 7 | 10/01/2017 | 4 |
With Date filter 08/01/2017 to 10/01/2017
| Customer ID | Order ID | Order Date | No Customer Orders |
| 3 | 5 | 8/01/2017 | 3 |
| 3 | 6 | 9/01/2017 | 3 |
| 3 | 7 | 10/01/2017 | 3 |
Solved! Go to Solution.
@Sir_night wrote:
Hi
Need to be a able to count the number of customer orders and be able to filter by order date wich updates the count of customer orders.
Customer ID Order ID Order Date No Customer Orders 1 1 1/01/2017 2 1 2 3/01/2017 2 2 3 2/01/2017 1 3 4 5/01/2017 4 3 5 8/01/2017 4 3 6 9/01/2017 4 3 7 10/01/2017 4
With Date filter 08/01/2017 to 10/01/2017
Customer ID Order ID Order Date No Customer Orders 3 5 8/01/2017 3 3 6 9/01/2017 3 3 7 10/01/2017 3
You can try a measure as below.
No Customer Orders =
COUNTAX (
FILTER (
ALLSELECTED ( Table1 ),
Table1[Customer ID] = MAX ( Table1[Customer ID] )
),
Table1[Order ID]
)
@Sir_night wrote:
Hi
Need to be a able to count the number of customer orders and be able to filter by order date wich updates the count of customer orders.
Customer ID Order ID Order Date No Customer Orders 1 1 1/01/2017 2 1 2 3/01/2017 2 2 3 2/01/2017 1 3 4 5/01/2017 4 3 5 8/01/2017 4 3 6 9/01/2017 4 3 7 10/01/2017 4
With Date filter 08/01/2017 to 10/01/2017
Customer ID Order ID Order Date No Customer Orders 3 5 8/01/2017 3 3 6 9/01/2017 3 3 7 10/01/2017 3
You can try a measure as below.
No Customer Orders =
COUNTAX (
FILTER (
ALLSELECTED ( Table1 ),
Table1[Customer ID] = MAX ( Table1[Customer ID] )
),
Table1[Order ID]
)
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 | |
| 79 | |
| 57 | |
| 51 | |
| 46 |