Forum Discussion
Anonymous
7 years agoNot applicable
Need help with a DAX function for Average on unique values
Hi, I have a table named Active_Users. It contains values for the count of users per location who have multiple devices in their name. Something like below - Location---No. of devices---Uniq...
- 7 years ago
Assuming you have a table called Locations with the sample data you showed, you can create a measure like this...
=DIVIDE( SUMX( Locations, Locations[No. of devices]*Locations[Unique users] ), SUM( Locations[Unique users] ) )
sktneer
7 years agoResolver I
Assuming you have a table called Locations with the sample data you showed, you can create a measure like this...
=DIVIDE( SUMX( Locations, Locations[No. of devices]*Locations[Unique users] ), SUM( Locations[Unique users] ) )