Forum Discussion
YeonseokKim
3 years agoFrequent Visitor
Averageifs function in Power BI
I want to get average of each category(the category can be changed with filters) For example, with the date below, I want to get the average pallet # by each loading number. Please advice m...
- 3 years ago
Hi,
Please check the below picture and the attached pbix file.
Avg pallets by each loading: = AVERAGEX ( VALUES ( Data[Loading number] ), CALCULATE ( SUM ( Data[Pallet #] ) ) )
Jihwan_Kim
3 years agoSuper User
Hi,
Please check the below picture and the attached pbix file.
Avg pallets by each loading: =
AVERAGEX (
VALUES ( Data[Loading number] ),
CALCULATE ( SUM ( Data[Pallet #] ) )
)