Forum Discussion
mboucher_rcr
4 years agoFrequent Visitor
Average Inventory
Hi, I am trying to calculate GMROI per item and am having trouble getting the average inventory cost. My data is something like this: Date Store Item SOHValue 30 May 2022 A 1 10 ...
- 4 years ago
Create below measure and put it in card
Avg = SUM(ItemSales[SOHValue]) / DISTINCTCOUNT(ItemSales[Date])Hope it will work for you.
ddpl
Solution Sage
4 years ago
Create below measure and put it in card
Avg = SUM(ItemSales[SOHValue]) / DISTINCTCOUNT(ItemSales[Date])
Hope it will work for you.