Forum Discussion
Avg Fill rate
Hi All,
I want to find The AVG Fill rate for customers and Warehouse separately
Here is am attaching sample Screenshots of both
And I attached the data as well.
I need avg fill rate for customer fill rate % and AVG Fill rate % for Ware house separately
Pls help me to create this Dax
Thanks
Alan
AlanP514 , based on what I got
try like
Customer
AverageX(values(table[Customer]), calculate(Average([fill Rate])) )or
AverageX(values(table[Customer]), calculate(Max([fill Rate])) )
Warehouse
AverageX(values(table[Warehouse]), calculate(Average([fill Rate])) )
or
AverageX(values(table[Warehouse]), calculate(Max([fill Rate])) )
1 Reply
- amitchandakSuper User
AlanP514 , based on what I got
try like
Customer
AverageX(values(table[Customer]), calculate(Average([fill Rate])) )or
AverageX(values(table[Customer]), calculate(Max([fill Rate])) )
Warehouse
AverageX(values(table[Warehouse]), calculate(Average([fill Rate])) )
or
AverageX(values(table[Warehouse]), calculate(Max([fill Rate])) )