Forum Discussion
VendettaBob
7 years agoHelper II
DAX - Total divided by rows
Is it possible to divide the total Tsp by each ID Count. Such as: This will need to be done in DAX. Basically I need to keep all other filters apart for the buckets on the left (pe...
- 7 years ago
Hi,
Try this measure
=CALCULATE(SUM(Data[Tsp]),ALL(Data[Buckets]))/SUM(Data[IDCount])
Hope this helps.
Ashish_Mathur
7 years agoSuper User
Hi,
Try this measure
=CALCULATE(SUM(Data[Tsp]),ALL(Data[Buckets]))/SUM(Data[IDCount])
Hope this helps.