Forum Discussion

VendettaBob's avatar
VendettaBob
Helper II
7 years ago
Solved

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...
  • Ashish_Mathur's avatar
    7 years ago

    Hi,

     

    Try this measure

     

    =CALCULATE(SUM(Data[Tsp]),ALL(Data[Buckets]))/SUM(Data[IDCount])

     

    Hope this helps.