How do I count repeating ID? I want to put it on the new column, it really doesn't matter if the number of total is repeating example like (if out come is this then better):
==========|=
10327 |2
10327 |2
10328 |3
10328 |3
10328 |3
Use a calculated column like this:
From bottom to top:
FILTER
gives you a table per row that has all rows with the sameOrderID
COUNT
would count the number ofOrderID
s, effectively the number of rowsCALCULATE
puts them together, so that the number of rows in the relevantFILTER
table is counted;For example this is a screenshot of a manually entered table: