Sum of cells without duplicates
Solved
xeug
Posted messages
36
Status
Member
-
xeug Posted messages 36 Status Member -
xeug Posted messages 36 Status Member -
Hello,
In one column, I have order numbers representing the orders.
10;11;12;12;13;14...
The problem is that I can have two identical order numbers representing different items on the same order.
I would like to know the number of orders (in the example above, 5 and not 6).
Thank you.
In one column, I have order numbers representing the orders.
10;11;12;12;13;14...
The problem is that I can have two identical order numbers representing different items on the same order.
I would like to know the number of orders (in the example above, 5 and not 6).
Thank you.
Good point, but the PROD is not necessary:
=SUM(1/COUNTIF(A1:A30,A1:A30))
in array form works too.
Best regards
Patrice
And it works
Thank you.