Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now

Reply
Sir_night
Frequent Visitor

Count duplicate ID

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 IDOrder IDOrder DateNo Customer Orders
111/01/20172
123/01/20172
232/01/20171
345/01/20174
358/01/20174
369/01/20174
3710/01/20174

 

 

With Date filter 08/01/2017 to 10/01/2017

 

Customer IDOrder IDOrder DateNo Customer Orders
358/01/20173
369/01/20173
3710/01/20173

  

1 ACCEPTED SOLUTION
Eric_Zhang
Microsoft Employee
Microsoft Employee


@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

  


@Sir_night

You can try a measure as below.

No Customer Orders =
COUNTAX (
    FILTER (
        ALLSELECTED ( Table1 ),
        Table1[Customer ID] = MAX ( Table1[Customer ID] )
    ),
    Table1[Order ID]
)

Capture.PNGCapture.PNG

View solution in original post

1 REPLY 1
Eric_Zhang
Microsoft Employee
Microsoft Employee


@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

  


@Sir_night

You can try a measure as below.

No Customer Orders =
COUNTAX (
    FILTER (
        ALLSELECTED ( Table1 ),
        Table1[Customer ID] = MAX ( Table1[Customer ID] )
    ),
    Table1[Order ID]
)

Capture.PNGCapture.PNG

Helpful resources

Announcements
November Power BI Update Carousel

Power BI Monthly Update - November 2025

Check out the November 2025 Power BI update to learn about new features.

Fabric Data Days Carousel

Fabric Data Days

Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.

Top Solution Authors