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

Try your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join 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
Fabric Data Days is here Carousel

Data Days 2026

Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.