Forum Discussion
joshs444
3 years agoFrequent Visitor
Formula Changes based on Context, incorrect values
I created a table to show the margin we are making per lb by item number): When I use a different category than Item, I get an incorrect value: I would like the Modifier to av...
- 3 years ago
Hi joshs444
not sure modifier is from which table therefore the most general formula would be
Average Margin Per lb =
AVERAGEX (
VALUES ( 'Sales by Item'[Item Code] ),
CALCULATE (
DIVIDE (
DIVIDE ( [Sum Margin], SUM ( 'Sales by Item'[QTY] ) ),
SUM ( 'Item List'[Weight pe Case] ),
0
),
CROSSFILTER ( 'Sales by Item'[Item Code], 'Item Listm'[Item Code], BOTH )
)
)
joshs444
3 years agoFrequent Visitor
Sum Margin = [Sum Sales] - [Sum Cost]
Sum Cost = sum('Sales by Item'[Extended Cost])
Sum Sales = sum('Sales by Item'[Extended Price])
Would it work if I was using SUMX?
Thanks!
- tamerj13 years agoCommunity Champion
Hi joshs444
not sure modifier is from which table therefore the most general formula would be
Average Margin Per lb =
AVERAGEX (
VALUES ( 'Sales by Item'[Item Code] ),
CALCULATE (
DIVIDE (
DIVIDE ( [Sum Margin], SUM ( 'Sales by Item'[QTY] ) ),
SUM ( 'Item List'[Weight pe Case] ),
0
),
CROSSFILTER ( 'Sales by Item'[Item Code], 'Item Listm'[Item Code], BOTH )
)
)