Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
7 years ago
Solved

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...
  • sktneer's avatar
    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]
    	)
    )