Forum Discussion
Steve123
3 years agoFrequent Visitor
Use measure in Iterator
Aplogies if this looks like a re-post, I initially accidentally put in under "Community". Relatively new to Power BI and trying to do things that are easy in Excel (guessing I'm not the only one....
FreemanZ
Super User
3 years agotry this:
Items per Tote =
VAR AvailableVolume = [Available Volume]
RETURN
SUMX(
'Week 36',
ROUNDDOWN(
DIVIDE(
AvailableVolume,
'Week 36'[Item Volume]
),
0
)
)