This content has been marked as final.
Show 4 replies
-
1. Re: How to do distinct count on a measure with max date only?
Branden Kornell Sep 11, 2019 12:10 PM (in response to Terka)Try
COUNTD(IF [Data Date] = { FIXED : MAX([Data Date] } THEN [Employee ID] END)
-
2. Re: How to do distinct count on a measure with max date only?
Deepak RaiSep 11, 2019 12:13 PM (in response to Terka)
{COUNT(IF { FIXED : MAX([Data Date] } =Data Date Then Data Date end)}
-
3. Re: How to do distinct count on a measure with max date only?
Terka Sep 11, 2019 12:17 PM (in response to Branden Kornell)Thank you, that worked!!!
-
4. Re: How to do distinct count on a measure with max date only?
Bryce Larsen Sep 11, 2019 12:24 PM (in response to Terka)