Forum Discussion
umasirhc
Aug 13, 2020Copper Contributor
Averaging Distinct Counts in a Pivot Table
OK, I've created a Pivot Table that pulls the distinct count of patient identifiers per date in one column by the date in the rows from a query. I'm trying to get a calculation of the average daily ...
- Aug 15, 2020
You may add measure as
Daily Average of Unique Patients:=AVERAGEX( SUMMARIZE( Range, Range[DATE], "Daily Unique", DISTINCTCOUNT(Range[Patient ID]) ), [Daily Unique])
Result is like
umasirhc
Aug 17, 2020Copper Contributor
SergeiBaklanThanks! This worked perfectly!
SergeiBaklan
Aug 19, 2020MVP
umasirhc , you are welcome