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
SergeiBaklan
Aug 15, 2020MVP
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
- umasirhcAug 17, 2020Copper Contributor
SergeiBaklanThanks! This worked perfectly!
- SergeiBaklanAug 19, 2020MVP
umasirhc , you are welcome
- Frankie_YimApr 19, 2022Copper Contributor
hi sir, i also want to do this as above captured image, how to do?? i try to modify your completed excel but cant success...
- Frankie_YimApr 19, 2022Copper Contributor