Forum Discussion
Anonymous
6 years agoNot applicable
An impossibly simple division
Link to PBIX-file: ShopInfo Hi all! I could use some help wrapping my head around the following issue: I have three tables in my model: They look like: Now I've cre...
- 6 years ago
Hi Anonymous
in depends on your use case scenario
but in the most common case you can try a measure
YearlySales per Employee = DIVIDE( CALCULATE(MIN(Products[YearlySales])), CALCULATE(MIN(ShopInfo[Employees])) )
az38
6 years agoCommunity Champion
Hi Anonymous
in depends on your use case scenario
but in the most common case you can try a measure
YearlySales per Employee =
DIVIDE(
CALCULATE(MIN(Products[YearlySales])),
CALCULATE(MIN(ShopInfo[Employees]))
)