Forum Discussion
AnneC
Advocate I
7 years agoCounting Same Data that Occurs over Multiple Years
Hi Everyone I have a problem, and any help would be appreciated. In our organisation individuals can participate once or multiple times within a year, or alternatively, not at all. Each individ...
- 7 years ago
ElenaN
Resolver V
7 years agoHello,
You can try this:
Measure =
VAR YearCount = COUNTROWS(FILTERS(Table3[Year]))
RETURN
IF(DISTINCTCOUNT(Table3[Year]) = YearCount, YearCount, 0)
Regards,
ElenaN