Forum Discussion
Anonymous
3 years agoNot applicable
distinct count with filter
Good Morning, I need some help please with a distinct count with a filter. The count is for customer, i need to filter on two dates so it is only counting where the first date is greater than the s...
lukiz84
3 years agoMemorable Member
Hi,
CustomerCount =
CALCULATE(
DISTINCTCOUNT(table[Customer]),
FILTER(
table,
table[Date 1] > table[Date 2]
)
)